mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-07-03 12:28:13 +08:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](df4cb1c069...9c091bb21b)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
33 lines
946 B
YAML
33 lines
946 B
YAML
on:
|
|
schedule:
|
|
- cron: "0 0 * * 1" # Every Monday at midnight UTC
|
|
workflow_dispatch:
|
|
|
|
name: "Vouch - Sync CODEOWNERS"
|
|
|
|
concurrency:
|
|
group: vouch-manage
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
sync:
|
|
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:
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
|
|
- uses: mitchellh/vouch/action/sync-codeowners@c6d80ead49839655b61b422700b7a3bc9d0804a9 # v1.4.2
|
|
with:
|
|
repo: ${{ github.repository }}
|
|
pull-request: "true"
|
|
merge-immediately: "true"
|
|
env:
|
|
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|