We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3ac145 commit aa06986Copy full SHA for aa06986
1 file changed
.github/workflows/update-cmor-cvs-table-command.yaml
@@ -16,6 +16,10 @@ jobs:
16
steps:
17
- name: Check out repository
18
uses: actions/checkout@v4
19
+ with:
20
+ repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
21
+ ref: ${{ github.event.client_payload.pull_request.head.ref }}
22
+ token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
23
24
- uses: actions/setup-python@v5
25
with:
@@ -29,7 +33,7 @@ jobs:
29
33
# Modify these as needed
30
34
UNIVERSE_CVS_FORK: "znichollscr"
31
35
UNIVERSE_CVS_BRANCH: "cmip-description"
32
- CMIP7_CVS_FORK: ${{ github.event.pull_request.head.repo.owner.login }}
36
+ CMIP7_CVS_FORK: ${{ github.event.client_payload.pull_request.head.repo.owner.login }}
37
CMIP7_CVS_BRANCH: ${{ github.head_ref || github.ref_name }}
38
run: |
39
which pip
0 commit comments