Skip to content

Commit

Permalink
fix(actions): When Github actions should trigger (#2)
Browse files Browse the repository at this point in the history
* fix(actions): When Github actions should trigger

* update(actions): Add glob pattern to catch all branches
  • Loading branch information
brdlyptrs authored May 23, 2023
1 parent 032eb55 commit 7c03d8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
- main

env:
CI: true
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ name: Pull Request
on:
push:
branches:
- !main
- '**'
- '!main'
pull_request:
branches:
- !main
- '**'
- '!main'

env:
CI: true
Expand Down

0 comments on commit 7c03d8d

Please sign in to comment.