astro/.github/workflows/changelog.yml
Drew Powers 3ef1b01e14
[wip] Fix CI (#202)
* Yarn format

* Fix changeset --since

* Fix Windows tests
2021-05-12 12:06:16 -06:00

37 lines
835 B
YAML

name: Changelog
on:
push:
paths-ignore:
- '.vscode/**'
- 'assets/**'
- 'docs/**'
- 'examples/**'
- 'www/**'
branches:
- main
jobs:
release:
name: Changelog
runs-on: ubuntu-latest
steps:
- name: Check out branch
uses: actions/checkout@v2
with:
fetch-depth: 0 # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
- name: Set up Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-engines
env:
CI: true
- name: Create release PR
uses: changesets/action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}