mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
14 lines
400 B
YAML
14 lines
400 B
YAML
![]() |
name: Check Changelog
|
||
|
|
||
|
on: [pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Check that CHANGELOG is touched or PR is [ci skip]-d
|
||
|
run: |
|
||
|
cat $GITHUB_EVENT_PATH | jq .pull_request.title | grep -i '\[\(\(changelog skip\)\|\(ci skip\)\)\]' || $( git diff remotes/origin/${{ github.base_ref }} --name-only | grep History.md )
|