Skip to content

Commit f6cb0ed

Browse files
authored
build: add bump bundles workflow (#694)
1 parent cfc7c65 commit f6cb0ed

File tree

5 files changed

+48
-8
lines changed

5 files changed

+48
-8
lines changed

.github/bump_bundles.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: bump_bundles
2+
3+
on:
4+
schedule:
5+
# weekly on mondays at 8 am utc
6+
- cron: '0 8 * * 1'
7+
workflow_dispatch:
8+
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/[email protected]
15+
16+
- uses: dart-lang/setup-dart@v1
17+
18+
- name: Install mason
19+
run: dart pub global activate mason_cli
20+
21+
- name: Bump templates
22+
run: tool/generate_bundles.sh
23+
24+
- name: Config Git User
25+
run: |
26+
git config user.name VGV Bot
27+
git config user.email [email protected]
28+
29+
- name: Create Pull Request
30+
uses: peter-evans/[email protected]
31+
with:
32+
base: main
33+
branch: feat/bump-template-bundles
34+
commit-message: "chore: bump cli bundles"
35+
title: "chore: bump cli bundles"
36+
body: Please squash and merge me!
37+
labels: bot
38+
author: VGV Bot <[email protected]>
39+
assignees: vgvbot
40+
committer: VGV Bot <[email protected]>

packages/dart_frog_cli/lib/src/commands/build/templates/dart_frog_prod_server_bundle.dart

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dart_frog_cli/lib/src/commands/create/templates/create_dart_frog_bundle.dart

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dart_frog_cli/lib/src/commands/dev/templates/dart_frog_dev_server_bundle.dart

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dart_frog_cli/lib/src/commands/new/templates/dart_frog_new_bundle.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)