Skip to content

Commit

Permalink
ci: update workflows to run on feature branch PRs as well
Browse files Browse the repository at this point in the history
  • Loading branch information
vindard committed Dec 13, 2024
1 parent bc7cd83 commit af8f79b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ name: Audit

on:
pull_request:
branches: [ main ]
branches:
- main
- 'feature/**'

jobs:
security_audit:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ name: Check Code

on:
pull_request:
branches: [main]
branches:
- main
- 'feature/**'

jobs:
check-code-backend:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ name: Spelling

on:
pull_request:
branches: [ main ]
branches:
- main
- 'feature/**'

jobs:
spelling:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/vendor/rust-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ name: Audit

on:
pull_request:
branches: [ main ]
branches:
- main
- 'feature/**'

jobs:
security_audit:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/vendor/spelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ name: Spelling

on:
pull_request:
branches: [ main ]
branches:
- main
- 'feature/**'

jobs:
spelling:
Expand Down

0 comments on commit af8f79b

Please sign in to comment.