| name: Mirror Releases |
| on: |
| # Trigger manually in the UI |
| workflow_dispatch: |
| # Trigger daily at 06:45 UTC |
| schedule: |
| # * is a special character in YAML so you have to quote this string |
| - cron: '45 6 * * *' |
| |
| jobs: |
| mirror: |
| runs-on: ubuntu-latest |
| steps: |
| - uses: actions/checkout@v6 |
| - run: | |
| ./npm/private/versions_mirror.sh |
| npx @bazel/buildifier npm/private/versions.bzl |
| - name: Create Pull Request |
| uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8 |
| with: |
| commit-message: 'chore: mirror external releases' |
| author: "aspect-marvin <marvin@aspect.build>" |
| committer: "aspect-marvin <marvin@aspect.build>" |