Subscribe to Label #5150
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
name: "Subscribe to Label" | |
on: | |
issues: | |
types: ["labeled"] | |
schedule: | |
# Run pull request triage every 5 minutes. Ideally, this would be on | |
# "labeled" types of pull request events, but that doesn't work if the pull | |
# request is from another fork. For example, see | |
# https://github.com/actions/labeler/issues/12 | |
- cron: '*/5 * * * *' | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: bytecodealliance/subscribe-to-label-action@v1 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |