diff options
author | 2022-03-04 15:50:30 -0600 | |
---|---|---|
committer | 2022-03-04 15:50:30 -0600 | |
commit | 1aa4b49fdda20c7183a4e295e4fa72a786214ed0 (patch) | |
tree | 1526e50f2cb4b156ab271eda222961846f9783cf | |
parent | 33193f9ac63232691bfe63e94704dabc1cbf969d (diff) | |
download | astro-1aa4b49fdda20c7183a4e295e4fa72a786214ed0.tar.gz astro-1aa4b49fdda20c7183a4e295e4fa72a786214ed0.tar.zst astro-1aa4b49fdda20c7183a4e295e4fa72a786214ed0.zip |
fix(ci): open changesets from `next`
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd03084d4..f5852d811 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -223,7 +223,7 @@ jobs: # We download all `dist/` artifacts from GitHub to skip the build process. changelog: name: Changelog PR or Release - if: ${{ (github.ref_name == 'main' || github.ref_name == 'next') && github.repository_owner == 'withastro' }} + if: ${{ (github.ref_name == 'main' || github.head_ref == 'next') && github.repository_owner == 'withastro' }} needs: [build] runs-on: ubuntu-latest steps: |