diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82db49a593..5081e1b6f9 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