forked from VeryGoodOpenSource/very_good_cli
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1.01 KB
/
bump_templates.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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]>