github.com/thanos-io/thanos@v0.32.5/.github/workflows/container-version.yaml (about) 1 on: 2 workflow_dispatch: 3 schedule: 4 - cron: '0 * * * *' 5 name: busybox-update workflow 6 jobs: 7 checkVersionAndCreatePR: 8 runs-on: ubuntu-latest 9 steps: 10 - name: Checkout code 11 uses: actions/checkout@v3 12 13 - name: Run busybox updater 14 run: | 15 chmod +x ./scripts/busybox-updater.sh 16 ./scripts/busybox-updater.sh 17 shell: bash 18 19 - name: Create Pull Request 20 uses: peter-evans/create-pull-request@v3 21 with: 22 signoff: true 23 token: ${{ secrets.GITHUB_TOKEN }} 24 commit-message: 'Updates busybox SHA' 25 branch: update-sha-action 26 delete-branch: true 27 title: '*: Updates Prometheus BusyBox image SHAs' 28 body: > 29 This PR is auto-generated by 30 [create-pull-request](https://github.com/peter-evans/create-pull-request). 31 labels: busybox, automated pr