We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1247074 commit 59773d8Copy full SHA for 59773d8
.github/workflows/recurring-int-tests.yml
@@ -0,0 +1,19 @@
1
+name: Recurring INT tests
2
+on:
3
+ workflow_dispatch:
4
+ schedule:
5
+ - cron: '0 */2 * * *' # every other hour
6
+
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ int-tests:
12
+ name: int tests
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Canary test
16
+ uses: docker://ghcr.io/step-security/integration-test/int:latest
17
+ env:
18
+ PAT: ${{ secrets.PAT }}
19
+ canary: true
0 commit comments