123456789101112131415161718192021 |
- name: Release Drafter
- on:
- push:
- branches:
- - main
- pull_request:
- # Only following types are handled by the action, but one can default to all as well
- types: [opened, reopened, synchronize]
- permissions:
- contents: read
- jobs:
- update_release_draft:
- runs-on: ubuntu-latest
- steps:
- - uses: release-drafter/release-drafter@master
- env:
- GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|