Skip to content

build(deps): bump github.com/charmbracelet/glamour from 0.10.0 to 1.0.0 #11

build(deps): bump github.com/charmbracelet/glamour from 0.10.0 to 1.0.0

build(deps): bump github.com/charmbracelet/glamour from 0.10.0 to 1.0.0 #11

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