Files
open-cluster-management/.github/workflows/doc-only.yml
Mike Ng 8b11697523
Some checks failed
Scorecard supply-chain security / Scorecard analysis (push) Failing after 23s
Post / images (amd64) (push) Failing after 5m13s
Post / images (arm64) (push) Failing after 9m17s
Post / image manifest (push) Has been skipped
Post / trigger clusteradm e2e (push) Has been skipped
Post / coverage (push) Failing after 26m22s
Close stale issues and PRs / stale (push) Successful in 6s
chore: e2e hosted and singleton should not be run on DOC-ONLY changes (#855)
Signed-off-by: Mike Ng <ming@redhat.com>
2025-03-07 01:15:46 +00:00

56 lines
1.3 KiB
YAML

# The following workflow is to handle skipped but required jobs when only documentations is changed.
# Github doc: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks#handling-skipped-but-required-checks
name: DOC-ONLY
on:
workflow_dispatch: {}
pull_request:
paths:
- 'solutions/**'
- 'assets/**'
- 'troubleshooting/**'
- ".github/ISSUE_TEMPLATE/*"
branches:
- main
permissions:
contents: read
jobs:
verify:
name: verify
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'
verify-deps:
name: verify-deps
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'
build:
name: build
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'
unit:
name: unit
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'
integration:
name: integration
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'
e2e:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'
e2e-hosted:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'
e2e-singleton:
runs-on: ubuntu-latest
steps:
- run: 'echo "Not required"'