Skip to content

Commit

Permalink
Make VRT ci job fully work
Browse files Browse the repository at this point in the history
  • Loading branch information
MatissJanis committed Dec 12, 2023
1 parent c5c98c9 commit bd023ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,12 @@ jobs:
if: failure()
with:
labels: ':red_circle: VRT failing'
- uses: actions-ecosystem/action-remove-labels@v1
if: success()
with:
labels: ':red_circle: VRT failing'
- name: Find Comment
uses: peter-evans/find-comment@v2
if: failure()
id: fc
with:
issue-number: ${{ github.event.pull_request.number }}
Expand All @@ -92,7 +95,7 @@ jobs:
We look forward to reviewing this PR once all the CI jobs have passed successfully!
edit-mode: replace
- name: Update comment when CI job passes
if: ${{ success() && steps.fc.outputs.comment-id != '' }}
if: success() && steps.fc.outputs.comment-id != ''
uses: peter-evans/create-or-update-comment@v3
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
Expand Down

0 comments on commit bd023ac

Please sign in to comment.