Skip to content

Commit 3393e89

Browse files
committed
fixup, use ${{ github.repository_owner }} and ${{ github.event.repository.name }} for dynamic organization and repository name in notebooks-digest-updater.yaml workflow env variables so that the action runs even on a fork
1 parent 838f742 commit 3393e89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/notebooks-digest-updater.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ on: # yamllint disable-line rule:truthy
2626

2727
env:
2828
USER_HASH: ${{ inputs.user-hash }}
29-
REPO_ORG: opendatahub-io
30-
REPO_NAME: 'notebooks'
29+
REPO_ORG: ${{ github.repository_owner }}
30+
REPO_NAME: ${{ github.event.repository.name }}
3131
TMP_BRANCH: tmp-digest-sync-${{ github.run_id }}
3232
BRANCH_NAME: ${{ inputs.branch }}
3333

0 commit comments

Comments
 (0)