mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-19 22:10:29 +00:00
34 lines
871 B
YAML
34 lines
871 B
YAML
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
name: "Vouch - Manage by Issue"
|
|
|
|
concurrency:
|
|
group: vouch-manage
|
|
cancel-in-progress: false
|
|
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
manage:
|
|
runs-on: namespace-profile-ghostty-xsm
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- uses: mitchellh/vouch/action/manage-by-issue@0e11a71bba23218a284d3ecca162e75a110fd7e3 # v1.3.0
|
|
with:
|
|
repo: ${{ github.repository }}
|
|
issue-id: ${{ github.event.issue.number }}
|
|
comment-id: ${{ github.event.comment.id }}
|
|
vouch-keyword: "!vouch"
|
|
denounce-keyword: "!denounce"
|
|
unvouch-keyword: "!unvouch"
|
|
pull-request: "true"
|
|
merge-immediately: "true"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|