Remove automatic copilot code review setting #803
This file contains hidden or 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: actions-config-validation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: write # enable write permissions for pull request comments | |
| jobs: | |
| actions-config-validation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: actions-config-validation | |
| uses: GrantBirki/json-yaml-validate@9bbaa8474e3af4e91f25eda8ac194fdc30564d96 # pin@v4.0.0 | |
| with: | |
| comment: "true" # enable comment mode | |
| yaml_schema: "__tests__/schemas/action.schema.yml" | |
| exclude_file: ".github/config/exclude.txt" |