From 7cbac015c3b2c4498b2265c02b52415826dde3b3 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Sun, 3 Aug 2025 14:59:59 -0500 Subject: [PATCH] chore(ci): remove duplicate `bump_bundles` workflow --- .github/bump_bundles.yaml | 40 --------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/bump_bundles.yaml diff --git a/.github/bump_bundles.yaml b/.github/bump_bundles.yaml deleted file mode 100644 index 212680ce8..000000000 --- a/.github/bump_bundles.yaml +++ /dev/null @@ -1,40 +0,0 @@ -name: bump_bundles - -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@v3.3.0 - - - 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 vgvbot@users.noreply.github.com - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v5.0.1 - with: - base: main - branch: feat/bump-template-bundles - commit-message: "chore: bump cli bundles" - title: "chore: bump cli bundles" - body: Please squash and merge me! - labels: bot - author: VGV Bot - assignees: vgvbot - committer: VGV Bot