Skip to content

Commit

Permalink
Fix CI workflow triggers (#23)
Browse files Browse the repository at this point in the history
* Fix CI workflow triggers

* Fix CI workflow triggers

* Limit push trigger to main branch
  • Loading branch information
ofalvai authored Oct 12, 2021
1 parent 46245b2 commit b2b8db5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Run tests

on: [push]
on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
test:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/validate_hacs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Validate HACS

on:
pull_request:
branches:
- main

jobs:
validate:
Expand Down

0 comments on commit b2b8db5

Please sign in to comment.