mirror of
https://github.com/primer/css.git
synced 2024-12-02 07:53:06 +03:00
19 lines
358 B
YAML
19 lines
358 B
YAML
name: changelog
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'release-*'
|
|
- '*changelog*'
|
|
jobs:
|
|
all:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions/setup-node@master
|
|
with:
|
|
node-version: 11
|
|
- name: install
|
|
run: npm install
|
|
- name: changelog
|
|
run: script/changelog.js
|