-
Notifications
You must be signed in to change notification settings - Fork 61
58 lines (54 loc) · 2.04 KB
/
external-checks.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: External checks
on:
pull_request: {}
workflow_dispatch: {}
defaults:
run:
shell: bash
jobs:
codeowners-check:
name: Lint CODEOWNERS
runs-on: ec2-runners
env:
CHECK: 'false'
container:
image: public.ecr.aws/m3u4c4h9/island-is/actions-runner-public:latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check if codeowners file changed
run: |
set -euo pipefail
MERGE_BASE="$(git merge-base "${{github.event.pull_request.base.sha}}" "$GITHUB_SHA")"
if ! git diff --exit-code --name-only "$MERGE_BASE".."$GITHUB_SHA" .github/CODEOWNERS; then
echo "CHECK=true" >> "$GITHUB_ENV"
if [[ "${{ github.event.pull_request.head.repo.full_name }}" != "${{ github.repository }}" ]]; then
echo "Changes to codeowners are not allowed on forks!"
exit 1
fi
fi
- name: Check indentation
if: env.CHECK == 'true'
run: |
set -euo pipefail
no_different_indentations="$(cat .github/CODEOWNERS | grep -v '^#' | awk NF | sed s/@.*//g | awk '{ print length }' | sort | uniq | wc -l)"
if [[ "$no_different_indentations" != "1" ]]; then
echo "CODEOWNERS has $no_different_indentations different indentations."
echo "Make sure that all teams start in the same column."
cat .github/CODEOWNERS | grep -v '^#' | awk NF
exit 1
fi
- name: Codeowners validation
if: env.CHECK == 'true'
run: |
set -euo pipefail
curl -sfL https://raw.githubusercontent.com/mszostok/codeowners-validator/main/install.sh | sh -s -- -b "$HOME" v0.7.4
REPOSITORY_PATH="." \
GITHUB_ACCESS_TOKEN="$GH_TOKEN" \
EXPERIMENTAL_CHECKS="notowned" \
CHECKS="files,owners,duppatterns" \
OWNER_CHECKER_REPOSITORY="island-is/island.is" \
~/codeowners-validator
env:
GH_TOKEN: ${{secrets.OWNERS_VALIDATOR_GITHUB_SECRET}}