[CI] update-image-tags #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[CI] update-image-tags" | |
on: | |
workflow_dispatch: | |
schedule: | |
# once a week | |
- cron: "0 0 * * 0" | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
if: github.repository == 'aws/aws-k8s-tester' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 | |
- run: ./hack/update-image-tags.sh | |
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # 7.0.8 | |
with: | |
branch: update-image-tags | |
base: main | |
add-paths: | | |
test/images/ | |
commit-message: "chore: update image tags" | |
committer: "GitHub <[email protected]>" | |
author: "GitHub <[email protected]>" | |
title: "chore: update image tags" | |
body: | | |
Generated by: | |
``` | |
./hack/update-image-tags.sh | |
``` |