Skip to content

Commit 7c04444

Browse files
Dynamic notebooks sync workflow
1 parent b90d5d6 commit 7c04444

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

.github/workflows/odh-notebooks-sync.yml

+17-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@ on:
77
required: true
88
description: "Owner of target upstream notebooks repository used to open a PR against"
99
default: "opendatahub-io"
10-
10+
notebooks-target-branch:
11+
required: true
12+
description: "Target branch of upstream repository"
13+
default: "main"
14+
python-version:
15+
required: true
16+
description: "Provide the python version to be used for the notebooks"
17+
default: "3.11"
1118
codeflare-repository-organization:
1219
required: true
1320
description: "Owner of origin notebooks repository used to open a PR"
@@ -18,7 +25,8 @@ on:
1825
description: "Provide version of the Codeflare-SDK release"
1926

2027
env:
21-
BRANCH_NAME: main
28+
BRANCH_NAME: ${{ github.event.inputs.notebooks-target-branch }}
29+
PYTHON_VERSION: ${{ github.event.inputs.python-version }}
2230
CODEFLARE_RELEASE_VERSION: ${{ github.event.inputs.codeflare_sdk_release_version }}
2331
UPDATER_BRANCH: odh-sync-updater-${{ github.run_id }}
2432
UPSTREAM_OWNER: ${{ github.event.inputs.upstream-repository-organization }}
@@ -39,23 +47,24 @@ jobs:
3947
git config --global user.email "[email protected]"
4048
git config --global user.name "codeflare-machine-account"
4149
git remote -v
42-
git pull upstream main && git push origin main
50+
git fetch upstream $BRANCH_NAME
51+
git checkout $BRANCH_NAME
4352
4453
- name: Setup Python environment
4554
uses: actions/setup-python@v4
4655
with:
47-
python-version: |
48-
3.9
49-
3.11
56+
python-version: ${{ env.PYTHON_VERSION }}
5057
cache: 'pipenv'
5158

59+
# Sync fails with pipenv 2024.1.0 (current latest version)
60+
# TODO: We should retry with later versions of pipenv once they are available.
5261
- name: Install pipenv and pip-versions
53-
run: pip install pipenv pip-versions
62+
run: pip install pipenv==2024.0.3 pip-versions
5463

5564
- name: Update Pipfiles in accordance with Codeflare-SDK latest release
5665
run: |
5766
package_name=codeflare-sdk
58-
available_python_versions=("3.9" "3.11") # add space separated python versions according to 'python-versions' specified in 'Setup Python Environment' step
67+
available_python_versions=("$PYTHON_VERSION") # add space separated python versions according to 'python-versions' specified in 'Setup Python Environment' step
5968
install_package_using_pipenv(){
6069
# args allow custom names for Pipfile and Pipfile.lock
6170
if [ $# -eq 2 ]; then

0 commit comments

Comments
 (0)