41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
name: Changelog
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.changeset/**'
|
|
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: Get yarn cache directory
|
|
id: yarn-cache
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
- name: Set dependencies cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ steps.yarn-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles('yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-${{ matrix.node_version }}-${{ hashFiles('yarn.lock') }}
|
|
${{ runner.os }}-${{ matrix.node_version }}-
|
|
|
|
- name: Create release PR
|
|
uses: changesets/action@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|