mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-22 18:30:09 +00:00
Merge pull request #6104 from zenoprax/docs/configure-actions
docs(ci): Exclude docs/wiki/** from some actions
This commit is contained in:
commit
072b6e9674
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:
|
||||
pull_request_target:
|
||||
types: [opened, synchronize, ready_for_review, reopened]
|
||||
paths-ignore:
|
||||
- 'docs/wiki/**'
|
||||
# Optional: Only run on specific file changes
|
||||
# paths:
|
||||
# - "src/**/*.ts"
|
||||
|
|
|
|||
3
.github/workflows/codeql-analysis.yml
vendored
3
.github/workflows/codeql-analysis.yml
vendored
|
|
@ -11,6 +11,9 @@ on:
|
|||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [master, release/*]
|
||||
paths-ignore:
|
||||
- 'docs/wiki/**'
|
||||
|
||||
schedule:
|
||||
- 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
|
||||
# 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'
|
||||
on: [pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'docs/wiki/**'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
|
|||
3
.github/workflows/lighthouse-ci.yml
vendored
3
.github/workflows/lighthouse-ci.yml
vendored
|
|
@ -4,6 +4,9 @@ on:
|
|||
branches:
|
||||
- master
|
||||
- main
|
||||
paths-ignore:
|
||||
- 'docs/wiki/**'
|
||||
|
||||
workflow_dispatch:
|
||||
inputs: {}
|
||||
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'
|
||||
|
||||
on: [pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'docs/wiki/**'
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue