We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f555bae commit a2299afCopy full SHA for a2299af
.github/workflows/dco_merge_group.yml
@@ -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