Skip to content

Commit 48d14e0

Browse files
authored
chore: add step to download members.json (#1633)
Download members.json so that the check works on other repos. Otherwise the following failure occurs: https://github.com/googleapis/java-spanner/actions/runs/12993106224/job/36234542669
1 parent 2e84834 commit 48d14e0

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/multi_approvers.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ concurrency:
2626

2727
jobs:
2828
multi-approvers:
29-
uses: 'abcxyz/pkg/.github/workflows/multi-approvers.yml@main'
30-
with:
31-
org-members-path: '.github/workflows/members.json'
29+
steps:
30+
- name: Download members.json
31+
run: |
32+
mkdir -p .github/workflows
33+
wget https://raw.githubusercontent.com/googleapis/google-auth-library-java/refs/heads/main/.github/workflows/members.json -O .github/workflows/members.json
34+
35+
- uses: 'abcxyz/pkg/.github/workflows/multi-approvers.yml@main'
36+
with:
37+
org-members-path: '.github/workflows/members.json'

0 commit comments

Comments
 (0)