Commit 5b0a21ecb041c71524ced8d35fbc80f98439650c
1 parent
d9665170
chore: add github workflows
Showing
1 changed file
with
16 additions
and
0 deletions
.github/workflows/release-drafter.yml
0 → 100644
1 | +name: Release Drafter | |
2 | + | |
3 | +on: | |
4 | + push: | |
5 | + branches: | |
6 | + - main | |
7 | + | |
8 | +jobs: | |
9 | + draft_release: | |
10 | + name: Draft release | |
11 | + runs-on: ubuntu-latest | |
12 | + steps: | |
13 | + - uses: release-drafter/release-drafter@v5.11.0 | |
14 | + name: Draft | |
15 | + env: | |
16 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ... | ... |