fix(ci): prevent double CI runs on next branch

This commit is contained in:
Nate Moore 2022-03-04 15:39:11 -06:00
parent e02438ce1f
commit 33193f9ac6

View file

@ -4,7 +4,6 @@ on:
push: push:
branches: branches:
- main - main
- next
pull_request: pull_request:
paths-ignore: paths-ignore:
- '.vscode/**' - '.vscode/**'
@ -224,7 +223,7 @@ jobs:
# We download all `dist/` artifacts from GitHub to skip the build process. # We download all `dist/` artifacts from GitHub to skip the build process.
changelog: changelog:
name: Changelog PR or Release name: Changelog PR or Release
if: ${{ github.ref_name == 'main' && github.repository_owner == 'withastro' }} if: ${{ (github.ref_name == 'main' || github.ref_name == 'next') && github.repository_owner == 'withastro' }}
needs: [build] needs: [build]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: