-
Notifications
You must be signed in to change notification settings - Fork 50
51 lines (46 loc) · 1.57 KB
/
update-osbuild.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# This action updates the osbuild ref in the Schutzfile
---
name: "Update osbuild commit ID"
on:
workflow_dispatch:
schedule:
# Every Sunday at 12:00
- cron: "0 12 * * 0"
jobs:
update-and-push:
runs-on: ubuntu-latest
steps:
- name: Apt update
run: sudo apt update
- name: Check out main
uses: actions/checkout@v4
with:
path: images
ref: main
- name: Update Schutzfile
working-directory: ./images
env:
GITHUB_TOKEN: ${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}
run: |
./test/scripts/update-schutzfile-osbuild
- name: Open PR
working-directory: ./images
env:
GITHUB_TOKEN: ${{ secrets.SCHUTZBOT_GITHUB_ACCESS_TOKEN }}
run: |
if git diff --exit-code; then echo "No changes"; exit 0; fi
git config --unset-all http.https://github.com/.extraheader
git config user.name "schutzbot"
git config user.email "schutzbot@gmail.com"
branch="schutzfile-osbuild-$(date -I)"
git checkout -b "${branch}"
git add Schutzfile
git commit -m "schutzfile: Update osbuild dependency commit ID"
git push -f https://"$GITHUB_TOKEN"@github.com/schutzbot/images.git
echo "Updating osbuild dependency commit IDs to current `main`" > body
gh pr create \
-t "Update osbuild dependency commit ID to latest" \
-F "body" \
--repo "osbuild/images" \
--base "main" \
--head "schutzbot:${branch}"