Skip to content

Commit bf91150

Browse files
committed
Merge remote-tracking branch 'upstream/main' into rhoai-2.23
2 parents 6a5027e + 544b205 commit bf91150

File tree

99 files changed

+15300
-4563
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+15300
-4563
lines changed

.github/workflows/code-quality.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ jobs:
6969
id: validate-yaml-files
7070
run: |
7171
type yamllint || sudo apt-get -y install yamllint
72-
# We ignore the .tekton directory with the konflux pipelines definitions as it's managed by devops (and usually violates rules...).
73-
find . -name "*.yaml" | grep -v "./.tekton/" | xargs yamllint --strict --config-file ./ci/yamllint-config.yaml
72+
# We ignore the insta-merge.yaml and .tekton directory with the konflux pipelines definitions as it's managed by devops (and usually violates rules...).
73+
find . -name "*.yaml" | grep -v "./.tekton/" | grep -v "./.github/workflows/insta-merge.yaml" | xargs yamllint --strict --config-file ./ci/yamllint-config.yaml
7474
find . -name "*.yml" | grep -v "./.tekton/" | xargs yamllint --strict --config-file ./ci/yamllint-config.yaml
7575
7676
# In some YAML files we use JSON strings, let's check these

.github/workflows/piplock-renewal.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,12 @@ jobs:
6565
run: pip install pipenv
6666

6767
# Run makefile recipe to refresh Pipfile.lock and push changes back to the branch
68-
- name: Run make refresh-pipfilelock-files and push the changes back to the branch
68+
- name: Run `make refresh-pipfilelock-files`
6969
run: |
7070
make refresh-pipfilelock-files PYTHON_VERSION=${{ env.PYTHON_VERSION }} INCLUDE_OPT_DIRS=${{ env.INCLUDE_OPT_DIRS }}
71+
72+
- name: Push the changes back to the branch
73+
run: |
7174
git add .
7275
git commit -m "Update Pipfile.lock files by piplock-renewal.yaml action"
7376
git push origin ${{ env.BRANCH }}

0 commit comments

Comments
 (0)