Skip to content

Commit

Permalink
chore(workflows): Fix triggers (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien2p authored Mar 18, 2022
1 parent c75e3b3 commit 61af9b8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
name: Tests pipeline
on: [push]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
unit-tests:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ name: "CodeQL"
on:
push:
branches:
- '*'
- '!main'
- main
pull_request:
branches:
- main
schedule:
- cron: '36 15 * * 5'

Expand Down

0 comments on commit 61af9b8

Please sign in to comment.