File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ _Put your message here_
44---
55
66### TODO Before Asking for a Review
7- - [ ] Rebase your branch to the latest version of ` dev ` (or ` main ` for release PRs )
7+ - [ ] Rebase your branch to the latest version of ` main ` (or ` main-v10 ` )
88- [ ] Make sure all CI workflows are green
99- [ ] When adding a public feature/fix: Update the ` Unreleased ` section of ` CHANGELOG.md ` (no date)
1010- [ ] Self-Review: Review "Files Changed" tab and fix any problems you find
1111- API Docs (only if there are changes in docstrings, rst files or samples):
1212 - [ ] Check the docs build ** without** warning: see the log of the API Docs workflow
1313 - [ ] Check that your changes render well in HTML: download the API Docs artifact and open ` index.html `
14- - If there are any problems it is faster to iterate by [ building locally the API Docs] ( ../blob/dev /doc/README.md#build-the-documentation )
14+ - If there are any problems it is faster to iterate by [ building locally the API Docs] ( ../blob/main /doc/README.md#build-the-documentation )
Original file line number Diff line number Diff line change 8181 - name : Set up the Docker Image Tags
8282 run : |
8383 set -x
84- # Set latest only if requested and on "dev", "dev -v10" or "main" branch
84+ # Set latest only if requested and on "main -v10" or "main" branch
8585 if [[ "${{ inputs.set-latest }}" == "true" &&
86- ("$GITHUB_REF_NAME" == "dev" || "$GITHUB_REF_NAME" == "dev -v10" || "$GITHUB_REF_NAME" == "main") ]]
86+ ("$GITHUB_REF_NAME" == "main -v10" || "$GITHUB_REF_NAME" == "main") ]]
8787 then
8888 DOCKER_IMAGE_TAGS="$IMAGE_URL:latest,$IMAGE_URL:$KHIOPS_REVISION.$IMAGE_INCREMENT"
8989 else
Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ jobs:
112112 rm -f requires.txt
113113 done
114114 - name : Configure Expensive Tests Setting
115- # Skip expensive tests by default, unless on the `dev`, `dev -v10` or `main` branches
116- if : github.ref != 'dev' && github.ref != 'dev -v10' && github.ref != 'main' && ! inputs.run-expensive-tests
115+ # Skip expensive tests by default, unless on the `main -v10` or `main` branches
116+ if : github.ref != 'main -v10' && github.ref != 'main' && ! inputs.run-expensive-tests
117117 run : echo "SKIP_EXPENSIVE_TESTS=true" >> "$GITHUB_ENV"
118118 - name : Prepare Integration Tests on remote files
119119 if : env.SKIP_EXPENSIVE_TESTS != 'true'
You can’t perform that action at this time.
0 commit comments