update_templates #118
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: 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@v4 | |
- uses: dart-lang/setup-dart@v1 | |
- name: Install mason | |
run: dart pub global activate mason_cli | |
- name: Bump templates | |
run: tool/generate_bundles.sh | |
- name: Config Git User | |
run: | | |
git config user.name VGV Bot | |
git config user.email [email protected] | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
base: main | |
branch: feat/bump-template-bundles | |
commit-message: "feat: bump template bundles" | |
title: "feat: bump template bundles" | |
body: Please squash and merge me! | |
labels: bot | |
author: VGV Bot <[email protected]> | |
assignees: vgvbot | |
committer: VGV Bot <[email protected]> |