62221 Parallelise the performance tests #16
Workflow file for this run
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: Lint GitHub Actions workflow files | |
on: | |
push: | |
branches: | |
- trunk | |
- '6.[8-9]' | |
- '[7-9].[0-9]' | |
paths: | |
# Only run when changes are made to workflow files. | |
- '.github/workflows/**' | |
pull_request: | |
branches: | |
- trunk | |
- '[0-9].[0-9]' | |
paths: | |
# Only run when changes are made to workflow files. | |
- '.github/workflows/**' | |
workflow_dispatch: | |
# Cancels all previous workflow runs for pull requests that have not completed. | |
concurrency: | |
# The concurrency group contains the workflow name and the branch name for pull requests | |
# or the commit hash for any other events. | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
# Disable permissions for all available scopes by default. | |
# Any needed permissions should be configured at the job level. | |
permissions: {} | |
jobs: | |
lint: | |
name: Lint GitHub Action files | |
permissions: | |
security-events: write | |
actions: read | |
contents: read | |
uses: ./.github/workflows/reusable-workflow-lint.yml |