From 16435390df1608643ceec803c04667aa90c76e00 Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Sat, 4 Nov 2023 23:09:47 +0900 Subject: [PATCH] Remove `concurrency` field from `.github/workflows` Signed-off-by: Sora Morimoto --- .github/workflows/codeql.yml | 10 ---------- .github/workflows/dependency-review.yml | 10 ---------- .github/workflows/scorecard.yml | 10 ---------- .github/workflows/workflow.yml | 10 ---------- 4 files changed, 40 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2fb9d680..611e1614 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -8,16 +8,6 @@ on: branches: - master -# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency -# Concurrent workflows are grouped by the PR or branch that triggered them -# (github.ref) and the name of the workflow (github.workflow). The -# 'cancel-in-progress' option then make sure that only one workflow is running -# at a time. This doesn't prevent new jobs from running, rather it cancels -# already running jobs before scheduling new jobs. -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'pull_request' || github.sha }} - cancel-in-progress: true - permissions: read-all jobs: diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 54116c1f..316739b2 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -2,16 +2,6 @@ name: Dependency Review on: pull_request -# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency -# Concurrent workflows are grouped by the PR or branch that triggered them -# (github.ref) and the name of the workflow (github.workflow). The -# 'cancel-in-progress' option then make sure that only one workflow is running -# at a time. This doesn't prevent new jobs from running, rather it cancels -# already running jobs before scheduling new jobs. -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'pull_request' || github.sha }} - cancel-in-progress: true - permissions: contents: read diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 4720573b..8438e650 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -7,16 +7,6 @@ on: schedule: - cron: 0 1 * * MON -# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency -# Concurrent workflows are grouped by the PR or branch that triggered them -# (github.ref) and the name of the workflow (github.workflow). The -# 'cancel-in-progress' option then make sure that only one workflow is running -# at a time. This doesn't prevent new jobs from running, rather it cancels -# already running jobs before scheduling new jobs. -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'pull_request' || github.sha }} - cancel-in-progress: true - permissions: read-all jobs: diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 89ad028a..357acd16 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -7,16 +7,6 @@ on: # Prime the caches every Monday - cron: 0 1 * * MON -# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency -# Concurrent workflows are grouped by the PR or branch that triggered them -# (github.ref) and the name of the workflow (github.workflow). The -# 'cancel-in-progress' option then make sure that only one workflow is running -# at a time. This doesn't prevent new jobs from running, rather it cancels -# already running jobs before scheduling new jobs. -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'pull_request' || github.sha }} - cancel-in-progress: true - permissions: read-all jobs: