mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
move changeset to run after build, no test required (#2341)
This commit is contained in:
parent
973751e31b
commit
6cbe79fac4
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue