fix gnu org too many requests, fix license file names (#242) #1180
This file contains hidden or 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: Check license headers | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
push: # Apply to all branches | |
jobs: | |
license-check: | |
runs-on: ubuntu-latest | |
steps: | |
# Run `git checkout` | |
- uses: actions/checkout@v3 | |
- uses: maximilianpilz/file-header-check@v1 | |
with: | |
config: '.github/license-check/license-config' | |
config-encoding: 'utf-8' | |
log-level: 'DEBUG' |