-
Notifications
You must be signed in to change notification settings - Fork 43
39 lines (33 loc) · 1.28 KB
/
validate-codeowners.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Validate Codeowners file
permissions: read-all
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'
jobs:
validate-codeowners:
runs-on: ubuntu-latest
steps:
# Check out repo to be validated in enxt stop
- uses: actions/checkout@v4
# Ensure that the owners file is valid
# https://github.com/marketplace/actions/github-codeowners-validator
- name: GitHub CODEOWNERS Validator
uses: mszostok/[email protected]
with:
# Explanation of checks
# files: Reports if codeowners file contains a filepath that does not exist in the repo
# owners Reports if codeowners file contains an invaid owner
# The check to see if an owner is part of the organization does not appear to work,
# so we will not be using it for now
# duppaterns: Reports if codeowners file contains duplicated lines
# syntax: Reports if file contains an invalid syntax definition
checks: files,owners,duppatterns,syntax
experimental_checks: notowned,avoid-shadowing
# GitHub access token is required only if the `owners` check is enabled
github_access_token: ${{ secrets.GITHUB_TOKEN }}