-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.31 KB
/
kairos-update.yaml
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
name: "Kairos Update"
on:
workflow_dispatch:
schedule:
- cron: "22 9 * * 0"
push:
branches:
- main
paths:
- ".github/workflows/kairos-update.yaml"
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: test flake ci
run: nix develop --command task kubernetes:ci-kairos-update
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: Update kairos version
title: 'Update kairos version'
draft: false
branch: chore/update-kairos
delete-branch: true
body: |
Update kairos version
- [openSUSE][os]
- [Kairos][kairos]
- [k3s][k3s]
Auto-generated by [create-pull-request][cpr]
[cpr]: https://github.com/peter-evans/create-pull-request
[os]: ${{ steps.update.outputs.opensuse_url }}
[kairos]: ${{ steps.update.outputs.kairos_url }}
[k3s]: ${{ steps.update.outputs.k3s_url }}