Upgrade Trunk Weekly #21
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: Upgrade Trunk Weekly | |
on: | |
schedule: | |
# Weekly at midnight W morning | |
- cron: 0 8 * * 3 | |
workflow_dispatch: {} | |
permissions: read-all | |
jobs: | |
trunk_upgrade: | |
name: Upgrade Trunk | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # For trunk to create PRs | |
pull-requests: write # For trunk to create PRs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create App Token for TrunkBuild App (Internal) | |
uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.TRUNK_OPEN_PR_APP_ID }} | |
private_key: ${{ secrets.TRUNK_OPEN_PR_APP_PRIVATE_KEY }} | |
- name: Trunk Upgrade | |
uses: trunk-io/trunk-action/upgrade@540e7fe497a45ae76370d26d95cc249059c4ac3a | |
with: | |
arguments: -n --bleeding-edge | |
github-token: ${{ steps.generate-token.outputs.token }} | |
reviewers: TylerJang27 |