mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-25 14:28:32 +00:00
29 lines
900 B
YAML
29 lines
900 B
YAML
on:
|
|
issues:
|
|
types: [opened, reopened]
|
|
|
|
name: "Vouch - Check Issue"
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: namespace-profile-ghostty-xsm
|
|
steps:
|
|
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
|
|
id: app-token
|
|
with:
|
|
app-id: ${{ secrets.VOUCH_APP_ID }}
|
|
private-key: ${{ secrets.VOUCH_APP_PRIVATE_KEY }}
|
|
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
sparse-checkout: .github/issue-unvouched-message
|
|
|
|
- uses: mitchellh/vouch/action/check-issue@52aec3d64655edf2fdb58f298e02da754a056daf # unreleased main
|
|
with:
|
|
issue-number: ${{ github.event.issue.number }}
|
|
auto-close: true
|
|
auto-lock: true
|
|
template-file: .github/issue-unvouched-message
|
|
env:
|
|
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|