Use reusable workflow restarter #724
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "ci" | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
pull_request: | ||
branches: | ||
- "main" | ||
workflow_dispatch: | ||
env: | ||
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
jobs: | ||
spec: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby_version: | ||
- "2.7" | ||
- "3.2" | ||
include: | ||
- puppet_gem_version: "~> 7.0" | ||
ruby_version: "2.7" | ||
- puppet_gem_version: "~> 8.0" | ||
ruby_version: "3.2" | ||
name: "spec (ruby ${{ matrix.ruby_version }})" | ||
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main" | ||
secrets: "inherit" | ||
with: | ||
rake_task: 'spec:coverage' | ||
ruby_version: ${{ matrix.ruby_version }} | ||
puppet_gem_version: ${{ matrix.puppet_gem_version }} | ||
acceptance: | ||
needs: "spec" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- "ubuntu-latest" | ||
- "windows-2019" | ||
ruby_version: | ||
- "2.7" | ||
- "3.2" | ||
include: | ||
- puppet_gem_version: "~> 7.0" | ||
ruby_version: "2.7" | ||
- puppet_gem_version: "~> 8.0" | ||
ruby_version: "3.2" | ||
name: "acceptance (ruby ${{ matrix.ruby_version }} | ${{ matrix.os }})" | ||
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main" | ||
secrets: "inherit" | ||
with: | ||
ruby_version: ${{ matrix.ruby_version }} | ||
puppet_version: ${{ matrix.puppet_gem_version }} | ||
rake_task: 'acceptance:local' | ||
runs_on: ${{ matrix.os }} | ||
rerun: | ||
needs: "acceptance" | ||
# (2) continue ONLY IF "acceptance" fails | ||
if: always() && needs.acceptance.result == 'failure' | ||
# (4) "use" the custom action to retrigger the failed "acceptance job" above | ||
# NOTE: pass the SOURCE_GITHUB_TOKEN to the custom action because (a) it must have | ||
# this to trigger the reusable workflow that restarts the failed job; and | ||
# (b) custom actions do not have access to the calling workflow's secrets | ||
name: "rerun" | ||
uses: "puppetlabs/cat-github-actions/.github/workflows/workflow-restarter.yml@cat_1820" | ||
Check failure on line 73 in .github/workflows/ci.yml GitHub Actions / .github/workflows/ci.ymlInvalid workflow file
|
||
secrets: "inherit" | ||
with: | ||
repository: ${{ github.repository }} | ||
run_id: ${{ github.run_id }} | ||
env: | ||
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |