Skip to content

Commit a2299af

Browse files
committed
Add dco_merge_group workflow
Signed-off-by: Yuri Shkuro <[email protected]>
1 parent f555bae commit a2299af

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/dco_merge_group.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Fake "DCO check" workflow inspired by https://github.com/onnx/onnx/pull/5398/files.
2+
# The regular DCO check is required, but it does not run from a merge queue and there is
3+
# no way to configure it to run.
4+
name: DCO
5+
on:
6+
merge_group:
7+
8+
permissions:
9+
contents: read
10+
jobs:
11+
DCO:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- run: echo "Fake DCO check to avoid blocking the merge queue"

0 commit comments

Comments
 (0)