Skip to content

Commit

Permalink
Merge pull request #24319 from mshima/skip-non-maintenance
Browse files Browse the repository at this point in the history
ignore most CI workflows at every non main/maintenance branch
  • Loading branch information
DanielFran authored Nov 22, 2023
2 parents 5d34dc9 + 7e38c8e commit fbb8bf7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 18 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/angular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ concurrency:
cancel-in-progress: true
on:
push:
branches-ignore:
- 'dependabot/**'
- 'skip_ci*'
- 'revert-*'
branches:
- 'main'
- '**maintenance'
paths-ignore:
- 'package*.json'
- 'generators/react/**'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/devserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ concurrency:
cancel-in-progress: true
on:
push:
branches-ignore:
- 'dependabot/**'
- 'skip_ci*'
branches:
- 'main'
- '**maintenance'
paths:
- 'generators/*client/**'
pull_request:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ concurrency:
cancel-in-progress: true
on:
push:
branches-ignore:
- 'dependabot/**'
- 'skip_ci*'
branches:
- 'main'
- '**maintenance'
pull_request:
types: [closed, opened, synchronize, reopened]
branches:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ concurrency:
cancel-in-progress: true
on:
push:
branches-ignore:
- 'dependabot/**'
- 'skip_ci*'
- 'revert-*'
branches:
- 'main'
- '**maintenance'
paths-ignore:
- 'package*.json'
- 'generators/angular/**'
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/vue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ concurrency:
cancel-in-progress: true
on:
push:
branches-ignore:
- 'dependabot/**'
- 'skip_ci*'
- 'revert-*'
branches:
- 'main'
- '**maintenance'
paths-ignore:
- 'package*.json'
- 'generators/angular/**'
Expand Down

0 comments on commit fbb8bf7

Please sign in to comment.