Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 0f6942f

Browse files
authored
Fix main branch IT triggeting params (#1430)
I hope this will fix that, although we have to merge it to check if this really works.
1 parent ccccbf9 commit 0f6942f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
if: ${{ always() && (github.event_name != 'issue_comment' || needs.check-comment.result == 'success') }}
4646
uses: ./.github/workflows/build-quesma-docker-image.yml
4747
with:
48-
REF: ${{ github.event.inputs.GIT_REF || needs.check-comment.outputs.ref }}
49-
VERSION: ${{ github.event.inputs.GIT_REF || needs.check-comment.outputs.ref }}
48+
REF: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && github.sha || github.event.inputs.GIT_REF || needs.check-comment.outputs.ref }}
49+
VERSION: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && github.sha || github.event.inputs.GIT_REF || needs.check-comment.outputs.ref }}
5050

5151
integration-test-run:
5252
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)