feat(ci): kill duplicate CI jobs on PRs (#26945)

This commit is contained in:
Maxime Beauchemin 2024-02-01 07:08:41 -08:00 committed by GitHub
parent 032af5a069
commit 26e330e119
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
18 changed files with 92 additions and 0 deletions

View File

@ -10,6 +10,11 @@ on:
- "superset/migrations/**" - "superset/migrations/**"
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
check_db_migration_conflict: check_db_migration_conflict:
name: Check DB migration conflict name: Check DB migration conflict

View File

@ -13,6 +13,11 @@ on:
schedule: schedule:
- cron: '0 4 * * *' - cron: '0 4 * * *'
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
analyze: analyze:
name: Analyze name: Analyze

View File

@ -6,6 +6,11 @@ on:
- "superset-embedded-sdk/**" - "superset-embedded-sdk/**"
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
embedded-sdk-test: embedded-sdk-test:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -4,6 +4,11 @@ on:
issue_comment: issue_comment:
types: [created] types: [created]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.issue.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
config: config:
runs-on: "ubuntu-latest" runs-on: "ubuntu-latest"

View File

@ -4,6 +4,11 @@ on:
pull_request: pull_request:
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
license_check: license_check:
name: License Check name: License Check

View File

@ -4,6 +4,11 @@ on:
pull_request: pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize] types: [labeled, unlabeled, opened, reopened, synchronize]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
check-hold-label: check-hold-label:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -7,6 +7,11 @@ on:
pull_request: pull_request:
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
pre-commit: pre-commit:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -10,6 +10,12 @@ on:
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
paths: paths:
- "superset-frontend/src/**" - "superset-frontend/src/**"
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
prefer_typescript: prefer_typescript:
if: github.ref == 'ref/heads/master' && github.event_name == 'pull_request' if: github.ref == 'ref/heads/master' && github.event_name == 'pull_request'

View File

@ -7,6 +7,11 @@ on:
pull_request: pull_request:
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
test-load-examples: test-load-examples:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -5,6 +5,12 @@ on:
paths: paths:
- "docs/**" - "docs/**"
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
build-deploy: build-deploy:
name: Build & Deploy name: Build & Deploy

View File

@ -11,6 +11,11 @@ on:
paths: paths:
- "superset-frontend/**" - "superset-frontend/**"
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
frontend-build: frontend-build:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -6,6 +6,11 @@ on:
paths: paths:
- "helm/**" - "helm/**"
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
lint-test: lint-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -12,6 +12,11 @@ on:
paths: paths:
- "superset/**" - "superset/**"
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
python-lint: python-lint:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -12,6 +12,11 @@ on:
paths: paths:
- "superset/**" - "superset/**"
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
test-postgres-presto: test-postgres-presto:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -12,6 +12,11 @@ on:
paths: paths:
- "superset/**" - "superset/**"
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
unit-tests: unit-tests:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -7,6 +7,11 @@ on:
pull_request: pull_request:
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
frontend-check: frontend-check:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -10,6 +10,11 @@ on:
- "superset-websocket/**" - "superset-websocket/**"
types: [synchronize, opened, reopened, ready_for_review] types: [synchronize, opened, reopened, ready_for_review]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
app-checks: app-checks:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04

View File

@ -8,6 +8,11 @@ on:
# Trigger this workflow when Dependabot creates a pull request # Trigger this workflow when Dependabot creates a pull request
types: [opened, synchronize, reopened] types: [opened, synchronize, reopened]
# cancel previous workflow jobs for PRs
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs: jobs:
update-lock-file: update-lock-file:
runs-on: ubuntu-latest runs-on: ubuntu-latest