-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (50 loc) · 1.41 KB
/
test.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
52
53
name: "Patcher Tests"
on:
push:
branches:
- main
jobs:
patcher-report:
runs-on: ubuntu-latest
outputs:
spec: ${{ steps.run-report.outputs.spec }}
steps:
- uses: actions/checkout@v4
- name: Patcher
id: run-report
uses: ./
with:
github_token: ${{ secrets.CI_READONLY_READ_TOKEN }}
patcher_command: report
working_dir: infrastructure-live
spec_file: spec.json
- uses: actions/upload-artifact@v4
with:
name: spec-file
path: spec.json
patcher-update:
# Runs patcher update against each dependency in the spec file
needs: [patcher-report]
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 2
matrix:
include: ${{ fromJson(needs.patcher-report.outputs.spec).Dependencies }}
steps:
- uses: actions/checkout@v4
- name: Load spec file
uses: actions/download-artifact@v4
with:
name: spec-file
- name: Patcher
id: run-update
uses: ./
with:
github_token: ${{ secrets.CI_READONLY_READ_TOKEN }}
patcher_command: update
working_dir: infrastructure-live
spec_file: spec.json
pull_request_title: "[Patcher] Update ${{ matrix.ID }}"
pull_request_branch: "patcher-updates-${{ matrix.ID }}"
dependency: ${{ matrix.ID }}