GHA: complain if PR adds commits from people not yet listed in ./AUTHORS #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AUTHORS file | |
on: | |
pull_request: { } | |
jobs: | |
authors-file: | |
name: AUTHORS file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout HEAD | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check whether ./AUTHORS is up-to-date | |
run: .github/workflows/authors-file.bash |