Skip to content

Commit

Permalink
Remove push events from workflow triggers (#10)
Browse files Browse the repository at this point in the history
The security-check and test-coverage workflows have been updated to no longer trigger on push events to the master branch. These changes limit the workflows to only run on pull requests, streamlining our CI/CD process and saving resources.
  • Loading branch information
ryanbekhen committed Dec 28, 2023
1 parent cd2a8d0 commit c162ca1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/security-check.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: "Security Check"

on:
push:
branches:
- master
pull_request:
branches:
- master
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: Test Coverage
run-name: Test Coverage

on:
push:
branches:
- master
pull_request:
branches:
- master
Expand Down

0 comments on commit c162ca1

Please sign in to comment.