[TT-13136] Adjust concurrency group to CI tests, extend to all workfl… #5
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
# yamllint disable rule:truthy | |
--- | |
name: CI lint | |
on: | |
pull_request: | |
branches: | |
- master | |
- release-** | |
push: | |
branches: | |
- master | |
- release-** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
godoc: | |
if: ${{ !github.event.pull_request.draft }} | |
uses: TykTechnologies/github-actions/.github/workflows/godoc.yml@main | |
secrets: | |
ORG_GH_TOKEN: ${{ secrets.ORG_GH_TOKEN }} | |
with: | |
go-version: stable | |
jira: | |
if: ${{ !github.event.pull_request.draft }} | |
uses: TykTechnologies/github-actions/.github/workflows/jira-lint.yaml@main | |
secrets: | |
JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} | |
ORG_GH_TOKEN: ${{ secrets.ORG_GH_TOKEN }} |