Upgrade Trunk #27
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 | |
on: | |
workflow_dispatch: {} | |
schedule: | |
# Runs every Wednesday (in the UTC timezone) | |
- cron: 0 0 * * 3 | |
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 | |
# >>> Install your own deps here (npm install, etc) <<< | |
- name: Trunk Upgrade | |
uses: trunk-io/trunk-action/upgrade@v1 |