Skip to content

Commit 4f8ddc8

Browse files
fix: address Copilot review feedback
- Restore Holodeck to v0.2.18 matching the original ci.yaml - Remove unused operator_version input from release workflow and caller - Skip Slack notification when SLACK_BOT_TOKEN secret is not configured Signed-off-by: Carlos Eduardo Arango Gutierrez <[email protected]>
1 parent afad630 commit 4f8ddc8

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,5 @@ jobs:
6262
uses: ./.github/workflows/release.yaml
6363
with:
6464
commit_short_sha: ${{ needs.variables.outputs.commit_short_sha }}
65-
operator_version: ${{ needs.variables.outputs.operator_version }}
6665
operator_image_base: ${{ needs.variables.outputs.operator_image_base }}
6766
secrets: inherit

.github/workflows/e2e-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
name: values-overrides
7474
path: ${{ github.workspace }}
7575
- name: Set up Holodeck
76-
uses: NVIDIA/[email protected].17
76+
uses: NVIDIA/[email protected].18
7777
with:
7878
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
7979
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -134,7 +134,7 @@ jobs:
134134
name: values-overrides
135135
path: ${{ github.workspace }}
136136
- name: Set up Holodeck
137-
uses: NVIDIA/[email protected].17
137+
uses: NVIDIA/[email protected].18
138138
with:
139139
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
140140
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

.github/workflows/forward-compatibility.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
notify-failure:
7878
runs-on: ubuntu-latest
7979
needs: [fetch-latest-images, run-e2e-tests]
80-
if: ${{ always() && (needs.fetch-latest-images.result == 'failure' || needs.run-e2e-tests.result == 'failure') }}
80+
if: ${{ always() && (needs.fetch-latest-images.result == 'failure' || needs.run-e2e-tests.result == 'failure') && secrets.SLACK_BOT_TOKEN != '' }}
8181
steps:
8282
- name: Send Slack alert notification
8383
uses: slackapi/[email protected]

.github/workflows/release.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ on:
2323
commit_short_sha:
2424
required: true
2525
type: string
26-
operator_version:
27-
required: true
28-
type: string
2926
operator_image_base:
3027
required: true
3128
type: string

0 commit comments

Comments
 (0)