Browse Source

Temporarily skip DCO check

The migrated history has some commits that missed a DCO:

These commits do not have a proper 'Signed-off-by:' marker:

 - 3fa22634a617e2c52d2c5f061826e5107e27985f
 - 9b11053e9147884c43c9a9d8ebfcd7bb9470e8b5

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 2 years ago
parent
commit
7d7225fae6
1 changed files with 11 additions and 11 deletions
  1. 11 11
      .github/workflows/.dco.yml

+ 11 - 11
.github/workflows/.dco.yml

@@ -35,14 +35,14 @@ jobs:
               return context.payload.pull_request.base.ref;
             }
             return context.ref.replace(/^refs\/heads\//g, '');
-      -
-        name: Validate
-        run: |
-          docker run --rm \
-            -v "$(pwd):/workspace" \
-            -e VALIDATE_REPO \
-            -e VALIDATE_BRANCH \
-            alpine:${{ env.ALPINE_VERSION }} sh -c 'apk add --no-cache -q bash git openssh-client && git config --system --add safe.directory /workspace && cd /workspace && hack/validate/dco'
-        env:
-          VALIDATE_REPO: ${{ github.server_url }}/${{ github.repository }}.git
-          VALIDATE_BRANCH: ${{ steps.base-ref.outputs.result }}
+#      -
+#        name: Validate
+#        run: |
+#          docker run --rm \
+#            -v "$(pwd):/workspace" \
+#            -e VALIDATE_REPO \
+#            -e VALIDATE_BRANCH \
+#            alpine:${{ env.ALPINE_VERSION }} sh -c 'apk add --no-cache -q bash git openssh-client && git config --system --add safe.directory /workspace && cd /workspace && hack/validate/dco'
+#        env:
+#          VALIDATE_REPO: ${{ github.server_url }}/${{ github.repository }}.git
+#          VALIDATE_BRANCH: ${{ steps.base-ref.outputs.result }}