Skip to content

Commit a8491fa

Browse files
committed
community workflow: remove broken report link
1 parent 62a9da1 commit a8491fa

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

.github/workflows/backport_branches.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
test_name: "Config Workflow"
6060

6161
- name: Note report location to summary
62+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
6263
env:
6364
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
6465
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/master.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
test_name: "Config Workflow"
5959

6060
- name: Note report location to summary
61+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
6162
env:
6263
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
6364
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/merge_queue.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
test_name: "Config Workflow"
4949

5050
- name: Note report location to summary
51+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
5152
env:
5253
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
5354
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/nightly_fuzzers.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
test_name: "Config Workflow"
3737

3838
- name: Note report location to summary
39+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
3940
env:
4041
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
4142
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/pull_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
test_name: "Config Workflow"
6060

6161
- name: Note report location to summary
62+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
6263
env:
6364
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
6465
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/pull_request_external.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
test_name: "Config Workflow"
4747

4848
- name: Note report location to summary
49+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
4950
env:
5051
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
5152
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/release_branches.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
test_name: "Config Workflow"
5959

6060
- name: Note report location to summary
61+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
6162
env:
6263
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
6364
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

.github/workflows/release_builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
test_name: "Config Workflow"
4848

4949
- name: Note report location to summary
50+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
5051
env:
5152
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
5253
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

ci/praktika/yaml_additional_templates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class AltinityWorkflowTemplates:
2222
# Additional pre steps for config workflow job
2323
ADDITIONAL_CI_CONFIG_STEPS = r"""
2424
- name: Note report location to summary
25+
if: ${{ !failure() && env.AWS_ACCESS_KEY_ID && env.AWS_SECRET_ACCESS_KEY }}
2526
env:
2627
PR_NUMBER: ${{ github.event.pull_request.number || 0 }}
2728
COMMIT_SHA: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

0 commit comments

Comments
 (0)