docs(ci): Exclude docs/wiki/** from some actions

There is no reason to run certain checks on simple documentation
updates. These Actions showed up during the initial v0.1 PR and added
noise to the PR process.
This commit is contained in:
Corey Newton 2026-01-21 20:04:16 -08:00
parent 14f4ed233e
commit ababd99b57
No known key found for this signature in database
5 changed files with 16 additions and 2 deletions

View file

@ -8,6 +8,8 @@ name: Claude Code Review
on: on:
pull_request_target: pull_request_target:
types: [opened, synchronize, ready_for_review, reopened] types: [opened, synchronize, ready_for_review, reopened]
paths-ignore:
- 'docs/wiki/**'
# Optional: Only run on specific file changes # Optional: Only run on specific file changes
# paths: # paths:
# - "src/**/*.ts" # - "src/**/*.ts"

View file

@ -11,6 +11,9 @@ on:
pull_request: pull_request:
# The branches below must be a subset of the branches above # The branches below must be a subset of the branches above
branches: [master, release/*] branches: [master, release/*]
paths-ignore:
- 'docs/wiki/**'
schedule: schedule:
- cron: '0 3 * * 6' - cron: '0 3 * * 6'

View file

@ -5,7 +5,10 @@
# Source repository: https://github.com/actions/dependency-review-action # Source repository: https://github.com/actions/dependency-review-action
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement # Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: 'Dependency Review' name: 'Dependency Review'
on: [pull_request] on:
pull_request:
paths-ignore:
- 'docs/wiki/**'
permissions: permissions:
contents: read contents: read

View file

@ -4,6 +4,9 @@ on:
branches: branches:
- master - master
- main - main
paths-ignore:
- 'docs/wiki/**'
workflow_dispatch: workflow_dispatch:
inputs: {} inputs: {}
release: release:

View file

@ -1,6 +1,9 @@
name: 'Lint & Test PRs' name: 'Lint & Test PRs'
on: [pull_request] on:
pull_request:
paths-ignore:
- 'docs/wiki/**'
permissions: permissions:
pull-requests: write pull-requests: write