Run the Agent build on release branches instead of main from release … #4564
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: Validate repository | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| run: | |
| uses: ./.github/workflows/run-validations.yml | |
| with: | |
| repo: core | |
| # Validations | |
| agent-reqs: true | |
| ci: true | |
| codeowners: true | |
| config: true | |
| dep: true | |
| http: true | |
| imports: true | |
| integration-style: true | |
| jmx-metrics: true | |
| labeler: true | |
| legacy-signature: true | |
| license-headers: true | |
| licenses: true | |
| metadata: true | |
| models: true | |
| openmetrics: true | |
| package: true | |
| readmes: true | |
| saved-views: true | |
| version: true | |
| secrets: inherit |