Skip to content

Commit

Permalink
chore: master is main, duh
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaellis committed Mar 4, 2021
1 parent 3b45e90 commit 214aedb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: release
on:
push:
branches:
- 'master'
- 'main'
- 'beta'
- 'alpha'
pull_request: {}
jobs:
main:
test:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
Expand All @@ -30,9 +30,9 @@ jobs:
- name: Type check
run: yarn types
release:
needs: main
needs: test
runs-on: ubuntu-latest
if: ${{ github.repository == 'pmndrs/three-stdlib' && contains('refs/heads/master,refs/heads/beta,refs/heads/alpha',github.ref) && github.event_name == 'push' }}
if: ${{ github.repository == 'pmndrs/three-stdlib' && contains('refs/heads/main,refs/heads/beta,refs/heads/alpha',github.ref) && github.event_name == 'push' }}
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
Expand Down

0 comments on commit 214aedb

Please sign in to comment.