fix(deps): update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.36.0 #121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Codeowners | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
validate-codeowners: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout source code at current commit" | |
uses: actions/checkout@v4 | |
- uses: mszostok/[email protected] | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
name: "Full check of CODEOWNERS" | |
with: | |
checks: "files,syntax,owners,duppatterns" | |
# GitHub access token is required only if the `owners` check is enabled | |
github_app_id: ${{ secrets.GH_APP_ID }} | |
github_app_installation_id: ${{ secrets.GH_INSTALLATION_ID }} | |
github_app_private_key: ${{ secrets.GH_PRIVATE_KEY }} | |
- uses: mszostok/[email protected] | |
if: github.event.pull_request.head.repo.full_name != github.repository | |
name: "Syntax check of CODEOWNERS" | |
with: | |
checks: "syntax,duppatterns" |