mirror of
https://github.com/wahyd4/helm-charts.git
synced 2026-08-09 04:26:02 +10:00
18 lines
403 B
YAML
18 lines
403 B
YAML
name: Check CODEOWNERS
|
|
|
|
on: pull_request
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install yq
|
|
run: |
|
|
sudo snap install yq
|
|
- name: generate CODEOWNERS
|
|
run: |
|
|
./scripts/check-codeowners.sh > .github/CODEOWNERS
|
|
- name: check CODEOWNERS for modifications
|
|
run: |
|
|
git diff --exit-code
|