Skip to content

Commit

Permalink
Run build and test workflow on all branches
Browse files Browse the repository at this point in the history
* Skips feature branches

Resolves opensearch-project#1023

Signed-off-by: Tommy Markley <markleyt@amazon.com>
  • Loading branch information
Tommy Markley committed Feb 7, 2022
1 parent bf6bde3 commit 7b398fb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pr_check_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@

name: Build and test

# trigger on every commit push and PR for all branches except feature branches
on:
push:
branches: [ main ]
branches: [ '**', '!feature/**' ]
pull_request:
branches: [ main ]
branches: [ '**', '!feature/**' ]

env:
CACHE_NAME: osd-node-modules
Expand Down

0 comments on commit 7b398fb

Please sign in to comment.