From 59773d8b3d5917ea3d7966e4870652fd2e5a0e00 Mon Sep 17 00:00:00 2001 From: Varun Sharma Date: Mon, 8 Aug 2022 23:22:50 -0700 Subject: [PATCH] Create recurring-int-tests.yml --- .github/workflows/recurring-int-tests.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/recurring-int-tests.yml diff --git a/.github/workflows/recurring-int-tests.yml b/.github/workflows/recurring-int-tests.yml new file mode 100644 index 00000000..c268cc99 --- /dev/null +++ b/.github/workflows/recurring-int-tests.yml @@ -0,0 +1,19 @@ +name: Recurring INT tests +on: + workflow_dispatch: + schedule: + - cron: '0 */2 * * *' # every other hour + +permissions: + contents: read + +jobs: + int-tests: + name: int tests + runs-on: ubuntu-latest + steps: + - name: Canary test + uses: docker://ghcr.io/step-security/integration-test/int:latest + env: + PAT: ${{ secrets.PAT }} + canary: true