-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vincent Koppen <[email protected]>
- Loading branch information
1 parent
619f43b
commit 49c22a1
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <[email protected]> | ||
# | ||
# SPDX-License-Identifier: MPL-2.0 | ||
|
||
name: DCO for merge groups | ||
# Workaround because DCO plugin does not run on merge group. See https://github.com/dcoapp/app/issues/199 | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# run pipeline on merge queue because DCO plugin does not | ||
merge_group: | ||
# Any other signals are handled by the actual DCO plugin | ||
|
||
jobs: | ||
dco-merge-group: | ||
name: DCO | ||
runs-on: ubuntu-latest | ||
if: ${{ github.actor != 'dependabot[bot]' }} | ||
steps: | ||
- name: "Workaround for DCO on merge groups" | ||
run: | | ||
echo "Workaround: signal DCO for merge queues because DCO plugin does not run for merge queues. See https://github.com/dcoapp/app/issues/199" |