-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflows: add tasks-container-update workflow
This workflow tries to update our cockpit CI container on a weekly interval.
- Loading branch information
1 parent
bd2bc6a
commit 3c734e0
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: tasks-container-update | ||
on: | ||
schedule: | ||
- cron: '0 2 * * 4' | ||
# can be run manually on https://github.com/cockpit-project/starter-kit/actions | ||
workflow_dispatch: | ||
jobs: | ||
tasks-container-update: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
statuses: write | ||
container: | ||
image: quay.io/cockpit/tasks | ||
options: --user root | ||
steps: | ||
- name: Set up configuration and secrets | ||
run: | | ||
printf '[user]\n\tname = Cockpit Project\n\[email protected]\n' > ~/.gitconfig | ||
mkdir -p ~/.config | ||
echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/github-token | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
# https://github.blog/2022-04-12-git-security-vulnerability-announced/ | ||
- name: Pacify git's permission check | ||
run: git config --global --add safe.directory /__w/starter-kit/starter-kit | ||
|
||
- name: Run tasks-container-update | ||
run: | | ||
make bots | ||
bots/tasks-container-update |