Skip to content

Commit

Permalink
Main everywhere (#91)
Browse files Browse the repository at this point in the history
Fixing workflow and example as the default branch is `main` in this
repository.

---------

Co-authored-by: Anthony Shew <[email protected]>
  • Loading branch information
pascalwill and anthonyshew authored Sep 24, 2023
1 parent 706bc26 commit 0fab4d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Quality
on:
push:
branches:
- master
- main
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

env:
FORCE_COLOR: 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Well, we can do exactly that!
```yml filename="./.github/workflows/quality.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
```

This block of code tells a GitHub Action to cancel any workflows that are:
Expand Down

1 comment on commit 0fab4d3

@vercel
Copy link

@vercel vercel bot commented on 0fab4d3 Sep 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

maestros – ./

maestros-team-shew.vercel.app
www.shew.dev
maestros-git-main-team-shew.vercel.app
shew.dev

Please sign in to comment.