From f64bbeae72598cc3e2b1caa0e7a570a57dda837f Mon Sep 17 00:00:00 2001 From: Ian Faust Date: Wed, 2 Oct 2024 15:29:35 +0200 Subject: [PATCH] [enhancement] reduce Github Actions runner loading by setting concurrencies (#2077) * Update pr-checklist.yml * Update renovate-validation.yml --- .github/workflows/pr-checklist.yml | 4 ++++ .github/workflows/renovate-validation.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/pr-checklist.yml b/.github/workflows/pr-checklist.yml index 0e9026bcfd..85b745e30b 100644 --- a/.github/workflows/pr-checklist.yml +++ b/.github/workflows/pr-checklist.yml @@ -20,6 +20,10 @@ on: pull_request: types: [opened, edited, synchronize] +concurrency: + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}-${{ github.event.number || github.sha }} + cancel-in-progress: true + jobs: checklist: name: Close all checkboxes before moving from draft diff --git a/.github/workflows/renovate-validation.yml b/.github/workflows/renovate-validation.yml index d48ad99827..85dd8f620c 100644 --- a/.github/workflows/renovate-validation.yml +++ b/.github/workflows/renovate-validation.yml @@ -17,6 +17,10 @@ on: permissions: contents: read +concurrency: + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}-${{ github.event.number || github.sha }} + cancel-in-progress: true + jobs: validate: name: Renovate validation