We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365c7d5 commit 675bafaCopy full SHA for 675bafa
2 files changed
.github/workflows/e2e-test-pr.yml
@@ -101,7 +101,7 @@ jobs:
101
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }}
102
103
- name: Upload test results
104
- if: always()
+ if: always() && github.event_name == 'pull_request'
105
run: |
106
filename=$(ls | grep -E '^[0-9]{12}_sdk_test_report\.xml$')
107
python3 e2e_scripts/tod_scripts/xml_to_obj_storage/scripts/add_gha_info_to_xml.py \
.github/workflows/e2e-test.yml
@@ -96,7 +96,7 @@ jobs:
96
LINODE_TOKEN: ${{ env.LINODE_TOKEN }}
97
98
- name: Upload Test Report as Artifact
99
+ if: always() && github.event_name == 'push'
100
uses: actions/upload-artifact@v6
with:
name: test-report-file
0 commit comments