Skip to content

Commit e54bc27

Browse files
add ci started job and as a needs in ci-passed
Signed-off-by: Laurynas Jagutis <laurynas.jagutis@alliander.com>
1 parent 997c382 commit e54bc27

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ concurrency:
2828
cancel-in-progress: true
2929

3030
jobs:
31+
ci-started:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- run: echo "ci started"
35+
3136
build-test-release:
3237
name: build-test-release
3338
uses: "./.github/workflows/build-test-release.yml"
@@ -52,7 +57,7 @@ jobs:
5257

5358
ci-passed:
5459
runs-on: ubuntu-latest
55-
needs: [build-test-release, check-code-quality, reuse-compliance, clang-tidy]
60+
needs: [ci-started, build-test-release, check-code-quality, reuse-compliance, clang-tidy]
5661

5762
steps:
5863
- run: echo "ci passed"

0 commit comments

Comments
 (0)