45
45
RELEASE_NAME : ${{ github.event.inputs.release_name }}
46
46
BRANCH : ${{ github.event.inputs.branch }}
47
47
USER_HASH : ${{ github.event.inputs.user-hash }}
48
- REPO_OWNER : opendatahub-io
48
+ REPO_OWNER : mtchoum1
49
49
REPO_NAME : notebooks
50
50
VERSION : ${{ github.event.inputs.buildconfigs_version}}
51
51
52
52
jobs :
53
53
# 1. Update the params-latest.env and commit-latest.env files with new SHAs
54
54
Update-manifests :
55
- uses : opendatahub-io /notebooks/.github/workflows/notebooks-digest-updater.yaml@main
55
+ uses : mtchoum1 /notebooks/.github/workflows/notebooks-digest-updater.yaml@main
56
56
with :
57
57
branch : ${{ github.event.inputs.branch }}
58
58
user-hash : ${{ github.event.inputs.user_hash }}
88
88
89
89
# Polling loop to wait for the PR to be merged total timeout=5h
90
90
MAX_ATTEMPTS=30
91
- SLEEP_DURATION=600
91
+ SLEEP_DURATION=30
92
92
93
93
for (( i=1; i<=MAX_ATTEMPTS; i++ )); do
94
94
echo "Checking if PR #$PR_NUMBER is merged (Attempt $i/$MAX_ATTEMPTS)..."
@@ -113,7 +113,7 @@ jobs:
113
113
# 3. Update the BuildConfigs for CUDA RStudio and RStudio
114
114
Update-buildConfigs :
115
115
if : ${{ github.event.inputs.update_buildconfigs == 'true' && github.event.inputs.release-type == 'Release' }}
116
- uses : opendatahub-io /notebooks/.github/workflows/update-buildconfigs.yaml@main
116
+ uses : mtchoum1 /notebooks/.github/workflows/update-buildconfigs.yaml@main
117
117
with :
118
118
branch : ${{ github.event.inputs.branch }}
119
119
version : ${{ github.event.inputs.buildconfigs_version }}
@@ -193,7 +193,7 @@ jobs:
193
193
Generate-release :
194
194
needs : [Update-manifests, Manifests-merged]
195
195
if : ${{ needs.Manifests-merged.outputs.pr_merged_m == 'true' && github.event.inputs.update_buildconfigs == 'false' && github.event.inputs.release-type == 'Release' }}
196
- rruns -on : ubuntu-latest
196
+ runs -on : ubuntu-latest
197
197
steps :
198
198
- name : Check out repository
199
199
uses : actions/checkout@v4
0 commit comments