-
Notifications
You must be signed in to change notification settings - Fork 23
43 lines (34 loc) · 1.04 KB
/
update-image-gardenlinux.yml
File metadata and controls
43 lines (34 loc) · 1.04 KB
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
---
name: Update image gardenlinux
"on":
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
update-image-gardenlinux:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Set up python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install pip3
run: pip3 install tox
- name: Update image gardenlinux
run: tox -e update-gardenlinux
- name: Create pull request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: |
chore: update gardenlinux image
Signed-off-by: OSISM Bot <bot@osism.tech>
committer: OSISM Bot <bot@osism.tech>
branch: updates-image-gardenlinux-${{ github.run_number }}
delete-branch: true
title: "chore: update gardenlinux mage"
body: |
chore: update gardenlinux image
Signed-off-by: OSISM Bot <bot@osism.tech>