Skip to content

Added lab configs to node and fromFile #59

Added lab configs to node and fromFile

Added lab configs to node and fromFile #59

name: Validate Codeowners file
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'
tags-ignore:
- '**'
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,duppatterns,syntax'
experimental_checks: 'notowned'
# GitHub access token is required only if the `owners` check is enabled
#github_access_token: "${{ secrets.OWNERS_VALIDATOR_PAC }}"