remove unused type AlertConditionPresence #87
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: Check license headers | |
on: | |
pull_request: # Apply to all pull requests | |
push: # Apply to all branches | |
jobs: | |
license-check: | |
runs-on: ubuntu-latest | |
steps: | |
# Run `git checkout` | |
- uses: actions/checkout@v3 | |
- uses: viperproject/check-license-header@v1 | |
with: | |
path: . | |
config: .github/license-check/license-config.json | |
strict: false # <boolean indicating whether files not covered by the configuration should be reported as errors> |