Commit c544e4d0 authored by Benjamin Cabé's avatar Benjamin Cabé Committed by Anas Nashif
Browse files

Revert "ci: cleanup concurrency rules"



This reverts commit 2dcb6185.
Completely breaks CI due to concurrency key being wrong and
the same for every PR...

Signed-off-by: default avatarBenjamin Cabé <benjamin@zephyrproject.org>
parent d339b961
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ on:
      - "tests/drivers/uart/**"

concurrency:
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
  cancel-in-progress: true

jobs:
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ on:
    - cron: '25 06,18 * * *'

concurrency:
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
  cancel-in-progress: true

jobs:
+2 −2
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ jobs:
    runs-on: ubuntu-22.04
    timeout-minutes: 90
    concurrency:
      group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
      group: doc-build-html-${{ github.ref }}
      cancel-in-progress: true

    steps:
@@ -192,7 +192,7 @@ jobs:
    container: texlive/texlive:latest
    timeout-minutes: 120
    concurrency:
      group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
      group: doc-build-pdf-${{ github.ref }}
      cancel-in-progress: true

    steps:
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ on:
      - 'v*'

concurrency:
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
  cancel-in-progress: true

jobs:
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ on:
      - 'SDK_VERSION'

concurrency:
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
  group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
  cancel-in-progress: true

jobs:
Loading