Skip to content

#145: Described SaaS instance naming conventions in the User Guide #534

#145: Described SaaS instance naming conventions in the User Guide

#145: Described SaaS instance naming conventions in the User Guide #534

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, 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
permissions:
contents: read
gate-1:
name: Gate 1 - Regular CI
needs: [ ci-job ]
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Branch Protection
run: true
slow-test-detection:
name: Run Slow or Expensive Tests (e.g. SaaS)?
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Detect Slow Tests
run: true
environment:
slow-tests
run-slow-tests:
name: Run Slow or Expensive Tests (e.g. SaaS) if Requested
uses: ./.github/workflows/run-tests.yml
needs: [ slow-test-detection ]
secrets: inherit
permissions:
contents: read
with:
slow-tests: true
python-version: "3.10"
metrics:
needs: [ ci-job, run-slow-tests ]
uses: ./.github/workflows/report.yml
secrets: inherit
permissions:
contents: read
gate-2:
name: Gate 2 - Allow Merge
runs-on: ubuntu-24.04
needs: [ run-slow-tests ]
permissions:
contents: read
steps:
- name: Branch Protection
run: true