mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-07-31 12:49:03 +00:00
Bumps [mitchellh/vouch/action/check-issue](https://github.com/mitchellh/vouch) from baeb3bf7c7e6c12d6e33bab3870b7e936580a934 to d66fa29a64600490892131ad87597c30c91fcac4.
- [Release notes](https://github.com/mitchellh/vouch/releases)
- [Commits](baeb3bf7c7...d66fa29a64)
---
updated-dependencies:
- dependency-name: mitchellh/vouch/action/check-issue
dependency-version: d66fa29a64600490892131ad87597c30c91fcac4
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
sparse-checkout: .github/issue-unvouched-message
|
|
|
|
- uses: mitchellh/vouch/action/check-issue@d66fa29a64600490892131ad87597c30c91fcac4 # 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 }}
|