fix: doc update #4
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 Docs Shim | |
# Trigger this workflow on pull requests that affect documentation or certain config files. | |
on: | |
pull_request: | |
paths: | |
- "**.md" | |
- "**.jpg" | |
- "**.png" | |
- "**.gif" | |
- "**.svg" | |
- docs/** | |
- .vscode/** | |
- .gitignore | |
- renovate.json | |
- .release-please-config.json | |
- release-please-config.json | |
- CODEOWNERS | |
- LICENSE | |
# shims to pass ci requirements for doc changes | |
jobs: | |
lint-check: | |
name: Lint Check Shim | |
uses: ./.github/workflows/lint.yaml | |
check-paths: | |
name: Check Paths Shim | |
needs: lint-check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Paths (Simulated) | |
run: echo "Simulating check-paths job - Success!" | |
run-package-test: | |
name: Package Test Shim | |
needs: check-paths | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Package Test (Simulated) | |
run: echo "Simulating run-package-test job - Success!" | |
evaluate-package-compliance: | |
name: Compliance Test Shim | |
needs: run-package-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Evaluate Package Compliance (Simulated) | |
run: echo "Simulating evaluate-package-compliance job - Success!" | |
# slim-dev-test.yaml | |
test: | |
name: Slim Dev Test Shim | |
runs-on: ubuntu-latest | |
steps: | |
- name: Shim for test | |
run: | | |
echo "Documentation-only change detected; marking test successful." |