Skip to content

Commit 5e6ebf5

Browse files
committed
refactor: modernize linting and build system
1 parent 1835b06 commit 5e6ebf5

File tree

14 files changed

+2541
-4181
lines changed

14 files changed

+2541
-4181
lines changed

.github/labels.yml

Lines changed: 0 additions & 66 deletions
This file was deleted.

.github/release-drafter.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/constraints.in

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/constraints.txt

Lines changed: 0 additions & 144 deletions
This file was deleted.

.github/workflows/labeler.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
issues: write
9+
pull-requests: write
10+
11+
name: release-please
12+
13+
jobs:
14+
release-please:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/create-github-app-token@v2
18+
id: generate-token
19+
with:
20+
app-id: ${{ vars.RELEASE_BOT_CLIENT_ID }}
21+
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
22+
- uses: googleapis/release-please-action@v4
23+
id: release-please
24+
with:
25+
token: ${{ steps.generate-token.outputs.token }}
26+
release-type: python

0 commit comments

Comments
 (0)