Update images #3
This file contains 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: Update images | |
"on": | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
update-images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install pip3 | |
run: pip3 install tox | |
- name: Update ${{ matrix.image }} images | |
uses: technote-space/create-pr-action@v2 | |
with: | |
EXECUTE_COMMANDS: | | |
tox -e update -- --minio-access-key ${{ secrets.MINIO_ACCESS_KEY }} --minio-secret-key ${{ secrets.MINIO_SECRET_KEY }} | |
COMMIT_EMAIL: '[email protected]' | |
COMMIT_MESSAGE: | | |
chore: update images | |
Signed-off-by: OSISM Bot <[email protected]> | |
COMMIT_NAME: "OSISM Bot" | |
ONLY_DEFAULT_BRANCH: true | |
PR_BRANCH_NAME: "update-images" | |
PR_BRANCH_PREFIX: "chore/" | |
PR_TITLE: "chore: update images" |