Skip to content

Release prep v10.4.1 #414

Release prep v10.4.1

Release prep v10.4.1 #414

Workflow file for this run

name: "ci"
on:
pull_request:
branches:
- "main"
pull_request_target:
types: [labeled, reopened]
branches:
- "main"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Spec:
if: github.event_name != 'pull_request_target'
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
with:
runs_on: "ubuntu-24.04"
secrets: "inherit"
Acceptance:
if: >-
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.fork == false) ||
(github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.fork == true &&
contains(github.event.pull_request.labels.*.name, 'allowed-for-ci'))
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
with:
flags: '--provision-prefer provision_service --provision-exclude docker --arch-exclude arm --puppetlabs --nightly'
secrets: "inherit"