diff --git a/.github/workflows/compliance-check.yml b/.github/workflows/compliance-check.yml new file mode 100644 index 0000000..b40ab92 --- /dev/null +++ b/.github/workflows/compliance-check.yml @@ -0,0 +1,20 @@ +name: Compliance Check + +on: + pull_request: + +jobs: + compliance-check: + name: Compliance Check + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - name: Checkout + uses: actions/checkout@v7.0.1 + + - name: Check compliance + uses: printify/gha-shared-actions/compliance-check@v1.0.0 + with: + validators: codeowners diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..850e699 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +# Intentionally empty. Required by the compliance-check CI validator.