1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/.github/workflows/check_changelog.yml
2020-05-08 14:32:17 -05:00

20 lines
610 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: Check Changelog
on:
pull_request:
types: [opened, reopened, edited, synchronize]
jobs:
build:
runs-on: ubuntu-latest
if: |
!( contains(github.event.pull_request.title, '[changelog skip]')
|| contains(github.event.pull_request.title, '[skip changelog]')
|| contains(github.event.pull_request.title, '[ci skip]')
|| contains(github.event.pull_request.title, '[skip ci]'))
steps:
- uses: actions/checkout@v1
- name: Check that CHANGELOG is touched
run: |
git diff remotes/origin/${{ github.base_ref }} --name-only | grep History.md