Skip to content

Commit

Permalink
Avoid most workflows when only 'dist' has changed
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Apr 12, 2024
1 parent 5eedb47 commit 7d97cfa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci-check-and-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
- 'dist/**'
pull_request:

permissions:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: CI-codeql

on:
push:
branches: [ "main" ]
branches:
- 'main'
- 'release/**'
paths_ignore:
- 'dist/**'
schedule:
- cron: '25 23 * * 2'

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-init-script-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- 'main'
- 'release/**'
paths_ignore:
- 'dist/**'
pull_request:
paths:
- '.github/workflows/ci-init-script-check.yml'
Expand Down

0 comments on commit 7d97cfa

Please sign in to comment.