summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2022-01-10 14:36:41 -0800
committerGravatar GitHub <noreply@github.com> 2022-01-10 17:36:41 -0500
commit6cbe79fac4e56f9255c0d87c21ab5013b2190058 (patch)
tree2d0580d0c6eae9a2f3b82b2bddc55f73062182f6
parent973751e31b52c301ff21ba17b120d9e488614a45 (diff)
downloadastro-6cbe79fac4e56f9255c0d87c21ab5013b2190058.tar.gz
astro-6cbe79fac4e56f9255c0d87c21ab5013b2190058.tar.zst
astro-6cbe79fac4e56f9255c0d87c21ab5013b2190058.zip
move changeset to run after build, no test required (#2341)
Diffstat (limited to '')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 82db49a59..5081e1b6f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -214,12 +214,12 @@ jobs:
run: node ./scripts/smoke/index.js
- # Changelog can only run _after_ Build and Test.
+ # Changelog can only run _after_ build.
# We download all `dist/` artifacts from GitHub to skip the build process.
changelog:
name: Changelog PR or Release
if: ${{ github.ref_name == 'main' && github.repository_owner == 'withastro' }}
- needs: [lint, test, smoke]
+ needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2