mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 15:00:19 +00:00
Check Changelog improvements (#1128)
The Check Changelog GitHub action now: * is skipped for dependabot PRs * uses a more descriptive job name than `check` Closes @W-8052460@. Closes @W-8098931@. [skip changelog]
This commit is contained in:
@@ -5,12 +5,13 @@ on:
|
||||
types: [opened, reopened, edited, synchronize]
|
||||
|
||||
jobs:
|
||||
check:
|
||||
check-changelog:
|
||||
runs-on: ubuntu-latest
|
||||
if: |
|
||||
!contains(github.event.pull_request.body, '[skip changelog]') &&
|
||||
!contains(github.event.pull_request.body, '[changelog skip]') &&
|
||||
!contains(github.event.pull_request.body, '[skip ci]')
|
||||
!contains(github.event.pull_request.body, '[skip ci]') &&
|
||||
!contains(github.event.pull_request.labels.*.name, 'c: dependencies')
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Check that CHANGELOG is touched
|
||||
|
||||
Reference in New Issue
Block a user