Skip to content

Commit 3b074b2

Browse files
committed
remove merge group logic for now
Signed-off-by: Thijs Baaijen <[email protected]>
1 parent b1ba7c6 commit 3b074b2

File tree

4 files changed

+1
-22
lines changed

4 files changed

+1
-22
lines changed

.github/workflows/check-blocking-labels.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,12 @@
66
name: Check Blocking Labels
77

88
on:
9-
# run pipeline on pull request
109
pull_request:
1110
types:
1211
- opened
1312
- synchronize
1413
- labeled
1514
- unlabeled
16-
# run pipeline on merge queue
17-
merge_group:
18-
# run this workflow manually from the Actions tab
1915
workflow_dispatch:
2016

2117
concurrency:

.github/workflows/ci.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
branches:
1111
- main # run pipeline on pull request
1212
pull_request:
13-
merge_group: # run pipeline on merge queue
1413
workflow_dispatch: # run this workflow manually from the Actions tab
1514
inputs:
1615
create_release:
@@ -44,14 +43,3 @@ jobs:
4443

4544
reuse-compliance:
4645
uses: "./.github/workflows/reuse-compliance.yml"
47-
48-
ci-passed:
49-
runs-on: ubuntu-latest
50-
needs: [ci-started, build-test-release, check-code-quality, reuse-compliance]
51-
if: always()
52-
53-
steps:
54-
# this explicit check is needed cfr. https://github.com/orgs/community/discussions/75568
55-
- name: "Check whether all jobs passed"
56-
run: echo '${{ toJSON(needs) }}' | jq -e 'to_entries | all(.value.result == "success")'
57-
- run: echo "ci passed"

.github/workflows/reuse-compliance.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
name: REUSE Compliance Check
77

88
on:
9-
# run pipeline from another workflow
109
workflow_call:
11-
# run this workflow manually from the Actions tab
1210
workflow_dispatch:
1311

1412
concurrency:

.github/workflows/sonar.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@
55
name: Sonar Cloud
66

77
on:
8-
# run pipeline on push event of main branch
98
push:
109
branches:
1110
- main
12-
# run pipeline on pull request
1311
pull_request:
14-
# run pipeline on merge queue
15-
merge_group:
12+
1613

1714
concurrency:
1815
group: ${{ github.workflow }}-${{ github.ref }}-sonar

0 commit comments

Comments
 (0)