Add Velero #22
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: Validate Codeowners | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '**/CODEOWNERS' | |
- '.github/workflows/validate-codeowners.yml' | |
jobs: | |
validate-codeowners: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout source code at current commit" | |
uses: actions/checkout@v4 | |
- uses: mszostok/codeowners-validator@v0.7.1 | |
with: | |
checks: "files,syntax,owners,duppatterns" | |
# GitHub access token is required only if the `owners` check is enabled | |
github_access_token: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}" |