Regular base image update check #589
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: Regular base image update check | |
on: | |
schedule: | |
- cron: "5 0 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install skopeo | |
run: sudo apt-get install -y skopeo | |
- name: Check change | |
run: | | |
base=$(grep -Po '(?<=FROM )(.*)' Dockerfile) | |
skopeo inspect "docker://$base" | grep -Po '(?<="Digest": ")([^"]+)' > .baseimagedigest | |
- name: Do change if the digest changed | |
run: | | |
git config user.name 'Update-a-Bot' | |
git config user.email 'insights@redhat.com' | |
git add .baseimagedigest | |
git commit -m "chore(image): update base image" || echo "No new changes" | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
title: 'chore(image): update base image' |