Skip to content

Commit

Permalink
Always run pipelines on master (#38)
Browse files Browse the repository at this point in the history
* refactor: always run pipelines on master

- only allow pipelines to be skipped on unprotected branches

* Empty-Commit-1

---------

Co-authored-by: Nick VanCise
  • Loading branch information
thenick775 authored Dec 26, 2023
1 parent 62815d3 commit 2f5f48f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/admin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

build:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
if: github.ref == 'refs/heads/master' || needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

build:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
if: github.ref == 'refs/heads/master' || needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gbajs3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

build:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
if: github.ref == 'refs/heads/master' || needs.pre_job.outputs.should_skip != 'true'
runs-on: ubuntu-latest
defaults:
run:
Expand Down

0 comments on commit 2f5f48f

Please sign in to comment.