update_templates #191
This file contains hidden or 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: update_templates | |
| on: | |
| schedule: | |
| # weekly on mondays at 8 am utc | |
| - cron: "0 8 * * 1" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dart-lang/setup-dart@v1 | |
| with: | |
| sdk: "3.11.0" | |
| - name: Install mason | |
| run: dart pub global activate mason_cli | |
| - name: Bump templates | |
| run: tool/generate_bundles.sh | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v8.1.0 | |
| with: | |
| base: main | |
| labels: bot | |
| branch: feat/bump-template-bundles | |
| title: "feat: bump template bundles" | |
| body: Please squash and merge me! | |
| commit-message: "feat: bump template bundles" | |
| token: ${{ secrets.VGV_BOT_PAT }} | |
| sign-commits: true |