mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
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:
parent
14f4ed233e
commit
ababd99b57
5 changed files with 16 additions and 2 deletions
2
.github/workflows/claude-code-review.yml
vendored
2
.github/workflows/claude-code-review.yml
vendored
|
|
@ -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"
|
||||||
|
|
|
||||||
3
.github/workflows/codeql-analysis.yml
vendored
3
.github/workflows/codeql-analysis.yml
vendored
|
|
@ -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'
|
||||||
|
|
||||||
|
|
|
||||||
5
.github/workflows/dependency-review.yml
vendored
5
.github/workflows/dependency-review.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
3
.github/workflows/lighthouse-ci.yml
vendored
3
.github/workflows/lighthouse-ci.yml
vendored
|
|
@ -4,6 +4,9 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- main
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/wiki/**'
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs: {}
|
inputs: {}
|
||||||
release:
|
release:
|
||||||
|
|
|
||||||
5
.github/workflows/lint-and-test-pr.yml
vendored
5
.github/workflows/lint-and-test-pr.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue