-
Notifications
You must be signed in to change notification settings - Fork 2
/
update-prod.yml
60 lines (56 loc) · 1.8 KB
/
update-prod.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
54
55
56
57
58
59
60
name: Update Prod Dependencies
on:
workflow_dispatch:
repository_dispatch:
types: [stage_updates_merged]
permissions:
contents: write
jobs:
patcher-report:
if: github.event_name == 'repository_dispatch' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
outputs:
spec: ${{ steps.run-report.outputs.spec }}
steps:
- uses: actions/checkout@v4
- uses: gruntwork-io/patcher-action@v2
id: run-report
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
patcher_command: report
working_dir: ./
spec_file: spec.json
include_dirs: "{*prod*}/**"
- uses: actions/upload-artifact@v4
with:
name: spec-file
path: spec.json
update-env:
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: Create trigger source message
if: github.event_name == 'repository_dispatch'
id: trigger_event
run: |
echo "source=Triggered by a new release in \`dogfood-infrastructure-modules\`" >> "$GITHUB_OUTPUT"
- name: Load spec file
uses: actions/download-artifact@v4
with:
name: spec-file
- uses: gruntwork-io/patcher-action@v2
id: run-update
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
patcher_command: update
working_dir: ./
spec_file: spec.json
pull_request_title: "[Patcher] [prod] Update ${{ matrix.ID }}"
pull_request_branch: "patcher-prod-updates-${{ matrix.ID }}"
dependency: ${{ matrix.ID }}