Skip to content

Commit

Permalink
changed linters to only run on PRs and not each push.
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinTegelaar committed Mar 13, 2022
1 parent 1689b0d commit b192623
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/CodeQL_Analyser.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
---
name: 'CodeQL'
on: # yamllint disable-line rule:truthy
push:
branches: [master, main, dev, react]
on: # yamllint disable-line rule:truthy
pull_request:
branches: [master, main, dev, react]
schedule:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/Node_Project_Check.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
---
name: NodeJS Project Check
on: # yamllint disable-line rule:truthy
push:
branches:
- main
- dev
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/Run_Linters.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
---
name: Lint Code Base
on: # yamllint disable-line rule:truthy
push:
branches:
- master
- main
- dev
on: # yamllint disable-line rule:truthy
pull_request_target:
branches:
- master
Expand Down

0 comments on commit b192623

Please sign in to comment.