Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,12 @@ jobs:
rm /tmp/requirements.txt
- name: Run Daily Integration Test
run: tox -vv -e daily-integration-test-${{ matrix.task }}

- name: Create Issue if Tests Fail
if: steps.run_tests.outputs.exit_code != '0'
uses: peter-evans/create-issue-from-file@v4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please pin to a specific hash, maybe we can use the latest version.

Suggested change
uses: peter-evans/create-issue-from-file@v4
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5.0.1

with:
title: "🔴 Integration test failed - ${{ github.run_id }}"
content-filepath: test_output.log
labels: bug, test-failure
assignees: eugene123tw, kprokofi, sovrasov, daankrol, ashwinvaidya17, rajeshgangireddy, atwinand
Loading