Skip to content

Commit e151717

Browse files
committed
Merge remote-tracking branch 'upstream/main' into rhoai-2.22
2 parents 36131bf + 2b6185d commit e151717

File tree

30 files changed

+9547
-9426
lines changed

30 files changed

+9547
-9426
lines changed

.github/workflows/code-quality.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ jobs:
6969
id: validate-yaml-files
7070
run: |
7171
type yamllint || sudo apt-get -y install yamllint
72-
find . -name "*.yaml" | xargs yamllint --strict --config-file ./ci/yamllint-config.yaml
73-
find . -name "*.yml" | xargs yamllint --strict --config-file ./ci/yamllint-config.yaml
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
74+
find . -name "*.yml" | grep -v "./.tekton/" | xargs yamllint --strict --config-file ./ci/yamllint-config.yaml
7475
7576
# In some YAML files we use JSON strings, let's check these
7677
- name: Validate JSON strings in YAML files (just syntax)

.github/workflows/instant-merge.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Instant Merge Konflux PRs
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
paths:
8+
- manifests/base/params-latest.env
9+
10+
permissions:
11+
contents: write
12+
pull-requests: write
13+
checks: write
14+
security-events: write
15+
statuses: write
16+
17+
jobs:
18+
instant-merge:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: instant-merge
22+
if: ${{ github.event.sender.login == 'red-hat-konflux[bot]' && ( contains(github.event.pull_request.title, 'Update odh-workbench-jupyter-') || contains(github.event.pull_request.title, 'Update odh-workbench-codeserver-') || contains(github.event.pull_request.title, 'Update odh-pipeline-runtime-') ) }}
23+
env:
24+
GITHUB_TOKEN: ${{ github.token }}
25+
run: |
26+
gh pr merge --merge --admin ${{ github.event.pull_request.html_url }}

codeserver/ubi9-python-3.11/Pipfile.lock

Lines changed: 86 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codeserver/ubi9-python-3.11/requirements.txt

Lines changed: 85 additions & 84 deletions
Large diffs are not rendered by default.

jupyter/datascience/ubi9-python-3.11/Pipfile.lock

Lines changed: 428 additions & 440 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jupyter/datascience/ubi9-python-3.11/requirements.txt

Lines changed: 422 additions & 419 deletions
Large diffs are not rendered by default.

jupyter/minimal/ubi9-python-3.11/Pipfile.lock

Lines changed: 242 additions & 241 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jupyter/minimal/ubi9-python-3.11/requirements.txt

Lines changed: 239 additions & 238 deletions
Large diffs are not rendered by default.

jupyter/pytorch/ubi9-python-3.11/Pipfile.lock

Lines changed: 428 additions & 440 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jupyter/pytorch/ubi9-python-3.11/requirements.txt

Lines changed: 422 additions & 419 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)