TagBot trigger issue #17
This file contains hidden or 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: TagBot | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: read | |
| jobs: | |
| TagBot: | |
| if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: JuliaRegistries/TagBot@304fc93e4623081443fee5b6317ac73b37923574 # v1.25.8 | |
| with: | |
| # The default GITHUB_TOKEN is sufficient for standard General registry | |
| # registrations. Add TagBot's `ssh` input only if tags must trigger | |
| # downstream workflows such as documentation builds. | |
| token: ${{ secrets.GITHUB_TOKEN }} |