From 0b5457e6c1dec7c9d3972d1f635a824276534436 Mon Sep 17 00:00:00 2001 From: Rick Ossendrijver Date: Tue, 31 Oct 2023 08:47:45 +0100 Subject: [PATCH] TO BE REVERTED: Run on every PR and commit --- .github/workflows/run-integration-tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-integration-tests.yml b/.github/workflows/run-integration-tests.yml index a51bba27068..eb9603aa674 100644 --- a/.github/workflows/run-integration-tests.yml +++ b/.github/workflows/run-integration-tests.yml @@ -9,20 +9,25 @@ name: "Integration tests" on: issue_comment: types: [ created ] + # XXX: Drop. + pull_request: + push: permissions: contents: read jobs: run-integration-tests: name: On-demand integration test - if: | - github.event.issue.pull_request && contains(github.event.comment.body, '/integration-test') + # XXX: Enable. + # if: | + # github.event.issue.pull_request && contains(github.event.comment.body, '/integration-test') runs-on: ubuntu-22.04 steps: - name: Check out code uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false - ref: refs/pull/${{ github.event.issue.number }}/head + # XXX: Enable. + # ref: refs/pull/${{ github.event.issue.number }}/head - name: Set up JDK uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 with: