cron-containerd-update #1204
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: cron-containerd-update | |
on: | |
schedule: | |
- cron: "0 4 * * 1,2,3,4,5" # “At 04:00 on Monday, Tuesday, Wednesday, Thursday, and Friday.” | |
workflow_dispatch: {} | |
jobs: | |
build-pr-containerd: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create Containerd Update | |
id: update | |
working-directory: ./addons/containerd/template | |
run: ./script.sh | |
- name: Create Pull Request # creates a PR if there are differences | |
uses: peter-evans/[email protected] | |
id: cpr | |
with: | |
token: ${{ secrets.AUTOMATED_PR_GH_PAT }} | |
commit-message: Create new Containerd version | |
title: 'Automated Containerd version update ${{ steps.update.outputs.containerd_version }}' | |
branch: automation/update-containerd | |
delete-branch: true | |
labels: | | |
automated-pr | |
containerd | |
type::chore | |
kurl::type::feature | |
draft: false | |
base: "main" | |
body: | | |
Automated changes by the [cron-containerd-update](https://github.com/replicatedhq/kURL/blob/main/.github/workflows/update-containerd.yaml) GitHub action | |
```release-note | |
Adds [Containerd add-on](https://kurl.sh/docs/add-ons/containerd) version ${{ steps.update.outputs.containerd_version }}. | |
``` | |
- name: Check outputs | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |