trigger ci #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dry Run | |
on: | |
push: | |
workflow_dispatch: | |
schedule: | |
# Try to dry run every 4 hours | |
- cron: "0 */4 * * *" | |
jobs: | |
dry-run: | |
name: Run sync-team dry-run | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Generate GitHub token | |
uses: actions/create-github-app-token@v1 | |
id: generate-token | |
with: | |
# GitHub App ID secret name | |
app-id: ${{ secrets.GH_APP_ID }} | |
# GitHub App private key secret name | |
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} | |
- name: Dry run | |
env: | |
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | |
run: cargo run -- --only-print-plan github |