mirror of
https://github.com/sharkdp/bat.git
synced 2024-12-04 05:33:48 +01:00
bcc2de86b4
* Added changelog item check Fetch the base branch and diff correctly - See: https://github.com/actions/checkout/issues/160 Improve organisation Add some echo for easier debugging Fix bad variable syntax Clarify the double-print in the success case * Write to changelog * Don't block dependabot PRs
27 lines
843 B
YAML
27 lines
843 B
YAML
name: Changelog
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
check-changelog:
|
|
name: Check for changelog entry
|
|
runs-on: ubuntu-latest
|
|
# dependabot PRs are automerged if CI passes; we shouldn't block these
|
|
if: github.actor != 'dependabot[bot]'
|
|
env:
|
|
PR_SUBMITTER: ${{ github.actor }}
|
|
PR_NUMBER: ${{ github.event.number }}
|
|
PR_BASE: ${{ github.base_ref }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Fetch PR base
|
|
run: git fetch --no-tags --prune --depth=1 origin
|
|
- name: Search for added line in changelog
|
|
run: |
|
|
ADDED=$(git diff -U0 "origin/${PR_BASE}" HEAD -- CHANGELOG.md | grep -P '^\+[^\+].+$')
|
|
echo "Added lines in CHANGELOG.md:"
|
|
echo "$ADDED"
|
|
echo "Grepping for PR info:"
|
|
grep "#${PR_NUMBER}\\b.*@${PR_SUBMITTER}\\b" <<< "$ADDED"
|