Automated Release Drafter with Version Bump PR Labels (#182) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow handling available labels in the repository. The list of labels is declared in .github/labels.json | |
name: Label management | |
on: | |
push: | |
paths: | |
- .github/labels.json | |
- .github/workflows/labels.yml | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
label: | |
name: Manage GitHub labels | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Manage labels | |
uses: lannonbr/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |