mirror of
https://github.com/imsnif/bandwhich.git
synced 2026-02-09 01:59:18 +08:00
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [taiki-e/cache-cargo-install-action](https://github.com/taiki-e/cache-cargo-install-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `taiki-e/cache-cargo-install-action` from 2 to 3 - [Release notes](https://github.com/taiki-e/cache-cargo-install-action/releases) - [Changelog](https://github.com/taiki-e/cache-cargo-install-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/cache-cargo-install-action/compare/v2...v3) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: taiki-e/cache-cargo-install-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
name: Changelog
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
env:
|
|
PR_NUMBER: ${{ github.event.number }}
|
|
PR_BASE: ${{ github.base_ref }}
|
|
|
|
jobs:
|
|
get-submitter:
|
|
name: Get the username of the PR submitter
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
submitter: ${{ steps.get-submitter.outputs.submitter }}
|
|
steps:
|
|
# cannot use `github.actor`: the triggering commit may be authored by a maintainer
|
|
- name: Get PR submitter
|
|
id: get-submitter
|
|
run: curl -sSfL https://api.github.com/repos/imsnif/bandwhich/pulls/${PR_NUMBER} | jq -r '"submitter=" + .user.login' | tee -a $GITHUB_OUTPUT
|
|
|
|
check-changelog:
|
|
name: Check for changelog entry
|
|
needs: get-submitter
|
|
env:
|
|
PR_SUBMITTER: ${{ needs.get-submitter.outputs.submitter }}
|
|
runs-on: ubuntu-latest
|
|
# allow dependabot PRs to have no changelog
|
|
if: ${{ needs.get-submitter.outputs.submitter != 'dependabot[bot]' }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- 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 -P "(#|pull/)${PR_NUMBER}\\b.*@${PR_SUBMITTER}\\b" <<< "$ADDED"
|