Skip to content

Commit

Permalink
ci: skip main workflow in changeset versions PR
Browse files Browse the repository at this point in the history
  • Loading branch information
emmenko committed Jun 30, 2022
1 parent 5d29e0e commit 870c045
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
branches:
- main
pull_request:
branches:
- "!changeset-release/main"

jobs:
lint_and_test:
Expand Down Expand Up @@ -131,7 +133,7 @@ jobs:
test_starter_template_installation:
runs-on: ubuntu-latest

if: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/changeset-release/main' }}
if: github.ref != 'refs/heads/main'

timeout-minutes: 15

Expand Down Expand Up @@ -217,7 +219,7 @@ jobs:
test_starter_template_typescript_installation:
runs-on: ubuntu-latest

if: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/changeset-release/main' }}
if: github.ref != 'refs/heads/main'

timeout-minutes: 15

Expand Down

0 comments on commit 870c045

Please sign in to comment.