ci: enable all linter checks #1228
Workflow file for this run
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: Internal - Pull request - Continuous Integration | |
| on: # yamllint disable-line rule:truthy | |
| merge_group: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| actions: read | |
| contents: read | |
| issues: read | |
| packages: write | |
| pull-requests: read | |
| security-events: write | |
| statuses: write | |
| # FIXME: This is a workaround for having workflow actions. See https://github.com/orgs/community/discussions/38659 | |
| id-token: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| uses: ./.github/workflows/__shared-ci.yml | |
| secrets: inherit |