Skip to content

BREAKING: 🔥 Delete all the deprecated things. #3285

BREAKING: 🔥 Delete all the deprecated things.

BREAKING: 🔥 Delete all the deprecated things. #3285

name: Validate Codeowners
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
codeowners:
name: Validate Codeowners
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# https://github.com/marketplace/actions/github-codeowners-validator
- uses: mszostok/[email protected]
with:
# TODO(https://github.com/square/workflow-kotlin/issues/316) Add the owners check
# back once this is fixed, or we implement a workaround.
checks: "files,syntax,duppatterns" #,owners
experimental_checks: "notowned"
# Wardell is not in the Square org apparently.
owner_checker_ignored_owners: "@wardellbagby"
# GitHub access token is required only if the `owners` check is enabled
github_access_token: "${{ secrets.OWNERS_VALIDATOR_GITHUB_SECRET }}"