build(deps): bump github.com/charmbracelet/glamour from 0.10.0 to 1.0.0 #11
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: Slash Command Dispatch | |
| # Runs on the BASE branch (safe) — no PR code is executed here. | |
| # A maintainer comments "/test" on a PR to approve running | |
| # integration tests with secrets for that PR's code. | |
| # | |
| # Requires a fine-grained PAT stored as GH_DISPATCH_TOKEN with: | |
| # Contents: Read and write (required to send repository_dispatch events) | |
| # Commit statuses: Read and write (required to set PR commit statuses) | |
| # Pull requests: Read | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| dispatch: | |
| # Only act on comments on pull requests (not plain issues) | |
| if: github.event.issue.pull_request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: peter-evans/slash-command-dispatch@v4 | |
| with: | |
| token: ${{ secrets.GH_DISPATCH_TOKEN }} | |
| commands: test | |
| # Only allow users with write access (maintainers/owners) to trigger | |
| permission: write | |
| issue-type: pull-request |