Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit ee556f8

Browse files
authored
ci: remove merge queue workflows (#1280)
### Summary of Changes We have some checks that should be a requirement before PRs can be added to a merge queue: * dependency review * check title * lint Naturally, the code should also build. In the merge queue itself, we only need to verify again that the code still builds as previous PRs get merged in. Checking the title of the PR again, for example, is a waste of time since it cannot have changed. However, this cannot be realized since checks that are marked as required must be run in the merge queue and on pull request events. Conclusion: With our current throughput, a merge queue just slows us down.
1 parent a76d2f9 commit ee556f8

File tree

4 files changed

+0
-99
lines changed

4 files changed

+0
-99
lines changed

.github/workflows/dependency-review.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ name: Dependency Review
33
on:
44
pull_request:
55
branches: [main]
6-
merge_group:
76

87
jobs:
98
dependency-review:
10-
if: ${{ github.event_name == 'pull_request' }}
119
uses: lars-reimann/.github/.github/workflows/dependency-review-reusable.yml@main

.github/workflows/megalinter.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ name: MegaLinter
33
on:
44
pull_request:
55
branches: [main]
6-
merge_group:
76

87
jobs:
98
megalinter:
10-
if: ${{ github.event_name == 'pull_request' }}
119
uses: lars-reimann/.github/.github/workflows/megalinter-reusable.yml@main
1210
secrets:
1311
PAT: ${{ secrets.PAT }}

.github/workflows/merge_queue.yml

Lines changed: 0 additions & 93 deletions
This file was deleted.

.github/workflows/pr-format.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ on:
77
- edited
88
- synchronize
99
- reopened
10-
merge_group:
1110

1211
jobs:
1312
check-format:
14-
if: ${{ github.event_name == 'pull_request_target' }}
1513
uses: lars-reimann/.github/.github/workflows/pr-format-reusable.yml@main

0 commit comments

Comments
 (0)