Skip to content

May 23rd workflow experiment 6 #247

May 23rd workflow experiment 6

May 23rd workflow experiment 6 #247

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "github-pages/*"
- "gh-pages/*"
- "main"
- "master"
pull_request:
types: [opened, reopened]
schedule:
# “At 00:00 on every 7th day-of-month from 1 through 31.” (https://crontab.guru)
- cron: "0 0 1/7 * *"
jobs:
ci-job:
name: Checks
uses: ./.github/workflows/checks.yml
secrets: inherit
slow-tests:
needs: [ ci-job ]
uses: ./.github/workflows/slow-tests.yml
metrics:
needs: [ slow-tests ]
uses: ./.github/workflows/report.yml
branch-protection:
needs: [ slow-tests ]
uses: ./.github/workflows/branch-protection.yml

Check failure on line 33 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yml (Line: 33, Col: 11): Error from called workflow exasol/saas-api-python/.github/workflows/branch-protection.yml@5c2b14b61016dfd18599744dc2ad5cb5719d7ff5 (Line: 10, Col: 5): Required property is missing: runs-on
# return 0
# comment: just to enable separate step without any matrix to set up a
# proper branch protection to ensure also slow-tests have been executed
# successfully before merging to main branch