24 lines
593 B
YAML
24 lines
593 B
YAML
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: Harden Runner
|
|
uses: step-security/harden-runner@dd2c410b088af7c0dc8046f3ac9a8f4148492a95
|
|
with:
|
|
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
|
|
|
|
- name: Canary test
|
|
uses: docker://ghcr.io/step-security/integration-test/int:latest
|
|
env:
|
|
PAT: ${{ secrets.PAT }}
|
|
canary: true
|