-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (52 loc) · 1.7 KB
/
update-checksum.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
51
52
53
54
55
name: update aqua checksum
on:
push:
branches:
- "main"
pull_request:
paths:
- "common/aquaproj-aqua/*"
- ".github/workflows/update-checksum.yaml"
workflow_dispatch:
jobs:
update-aqua-checksum:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/cache@v4
with:
path: ~/.local/share/aquaproj-aqua
key: v1-aqua-installer-${{runner.os}}-${{runner.arch}}-${{hashFiles('**/aqua.yaml')}}
restore-keys: |
v1-aqua-installer-${{runner.os}}-
- uses: aquaproj/[email protected]
with:
aqua_version: v2.39.0
working_directory: common/aquaproj-aqua
- run: aqua update-checksum -deep -prune
working-directory: common/aquaproj-aqua
- run: git diff --exit-code
id: diff
continue-on-error: true
- name: Commit changes
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git add -A
git commit --author . -m "chore(aqua): update checksum for #$PR_NUM"
git push origin
if: steps.diff.outcome == 'failure'
env:
PR_NUM: ${{ github.event.number}}
- run: aqua install --all --only-link
approve:
runs-on: ubuntu-latest
needs: update-aqua-checksum
if: "github.event.pull_request.user.login == 'renovate[bot]' && contains(github.event.pull_request.body, ' **Automerge**: Enabled.')"
steps:
- uses: actions/checkout@v4
- run: gh pr review ${{ github.event.number }} --approve
env:
GITHUB_TOKEN: ${{ github.token }}