Skip to content

Commit 98b0590

Browse files
[IDP-2744] Fix concurrency option to support renovate fallback (#32)
* Update ci.yml * Add renovate
1 parent 17d2d16 commit 98b0590

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ on:
1111
env:
1212
CI: true
1313

14+
# Prevent duplicate runs if Renovate falls back to creating a PR
1415
concurrency:
15-
group: ci-${{ github.ref }}
16+
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
1617
cancel-in-progress: true
1718

1819
jobs:
1920
build:
20-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2122

2223
steps:
2324
- uses: actions/checkout@v4

renovate.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"github>gsoft-inc/renovate-config",
5+
"github>gsoft-inc/renovate-config:all-automerge.json"
6+
]
7+
}

0 commit comments

Comments
 (0)