-
Notifications
You must be signed in to change notification settings - Fork 15
82 lines (72 loc) · 1.8 KB
/
codeowners.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#
# Author: Hari Sekhon
# Date: 2022-02-24 14:04:44 +0000 (Thu, 24 Feb 2022)
#
# vim:ts=2:sts=2:sw=2:et
#
# https://github.com/HariSekhon/GitHub-Actions
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
# ============================================================================ #
# C o d e O w n e r s
# ============================================================================ #
# Validates .github/CODEOWNERS file syntax
---
name: Codeowners
on: # yamllint disable-line rule:truthy
push:
branches:
- master
- main
paths:
- CODEOWNERS
- .github/CODEOWNERS
pull_request:
branches:
- master
- main
paths:
- CODEOWNERS
- .github/CODEOWNERS
workflow_call:
inputs:
debug:
type: string
required: false
default: false
workflow_dispatch:
inputs:
debug:
type: boolean
required: false
default: false
#schedule:
# - cron: '0 0 * * 1'
permissions:
contents: read
defaults:
run:
shell: bash -euxo pipefail {0}
env:
GH_TOKEN: ${{ github.token }}
DEBUG: ${{ inputs.debug == true || github.event.inputs.debug == 'true' || '' }}
jobs:
validate:
name: Validate CODEOWNERS
runs-on: ubuntu-latest
container: harisekhon/bash-tools:latest
steps:
- name: Environment
run: env | sort
- name: GH CLI auth status
run: |
gh config set prompt disabled
gh auth status
- name: Check Codeowners Errors
run: |
check_github_codeowners.sh "$GITHUB_REPOSITORY" "$GITHUB_REF_NAME"