From 65b4f0569070c494db94dbf0eb5a80197dab18fa Mon Sep 17 00:00:00 2001 From: Drew Hess Date: Sun, 14 May 2023 21:09:17 +0100 Subject: [PATCH 1/2] testing, ignore. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f541b72..a456c95 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +Testing. + # Probot: DCO a GitHub Integration built with [probot](https://github.com/probot/probot) that enforces the [Developer Certificate of Origin](https://developercertificate.org/) (DCO) on Pull Requests. It requires all commit messages to contain the `Signed-off-by` line with an email address that matches the commit author. From 119d4c8506bfa613fb3cca62bd6eb86e20a4b7a7 Mon Sep 17 00:00:00 2001 From: Drew Hess Date: Sun, 14 May 2023 21:13:47 +0100 Subject: [PATCH 2/2] fix: Add additional permissions to DCO workflow. --- .github/workflows/dco.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dco.yaml b/.github/workflows/dco.yaml index 98757b2..6c0a5c1 100644 --- a/.github/workflows/dco.yaml +++ b/.github/workflows/dco.yaml @@ -8,11 +8,12 @@ jobs: permissions: contents: read pull-requests: write + statuses: write runs-on: ubuntu-latest steps: - name: Check DCO - uses: hackworthltd/dcoapp@main + uses: hackworthltd/dcoapp@testing with: token: ${{ secrets.GITHUB_TOKEN }}