We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0038e45 commit 2ed39efCopy full SHA for 2ed39ef
.github/workflows/dco-merge-group.yml
@@ -0,0 +1,12 @@
1
+name: DCO
2
+on:
3
+ merge_group:
4
+
5
+# Workaround because the DCO app doesn't run on a merge_group trigger
6
+# https://github.com/dcoapp/app/pull/200
7
+jobs:
8
+ DCO:
9
+ runs-on: ubuntu-latest
10
+ if: ${{ github.actor != 'renovate[bot]' }}
11
+ steps:
12
+ - run: echo "dummy DCO workflow (it won't run any check actually) to trigger by merge_group in order to enable merge queue"
.github/workflows/pr-checks.yml
@@ -4,11 +4,14 @@ on:
push:
branches:
- main
- paths-ignore:
- - '**.md'
pull_request:
+ types:
+ - opened
+ - synchronize
+ - reopened
+ branches:
13
+ - main
14
15
16
permissions:
17
contents: read
0 commit comments