Skip to content

Commit

Permalink
Add a dummy workflow to succeed DCO check on merge queues
Browse files Browse the repository at this point in the history
See #363 for
more details.

Signed-off-by: Leandro Lucarella <[email protected]>
  • Loading branch information
llucax committed Apr 27, 2023
1 parent ebeef67 commit 520a542
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dco-merge-queue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Based on https://github.com/hyperledger/besu/pull/5207/files
name: dco
on:
merge_group:

jobs:
dco:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- run: echo "This DCO job runs on merge_queue event and doesn't check PR contents"

0 comments on commit 520a542

Please sign in to comment.