From 915063dc2349939d533d402df056e86436faf0b2 Mon Sep 17 00:00:00 2001 From: Ralph Ursprung Date: Thu, 20 Jun 2024 17:27:15 +0200 Subject: [PATCH] remove manual DCO check (done by org-level check) the DCO check is activated directly on GitHub in the org-level settings for `opensearch-project` (see the [GitHub documentation]). there's no need for the duplicate check implemented in the workflow anymore. other projects which are created based on the template which want a DCO check can also just enable this in their settings. fixes #61 [GitHub documentation]: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-commit-signoff-policy-for-your-repository Signed-off-by: Ralph Ursprung --- .github/workflows/dco.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/dco.yml diff --git a/.github/workflows/dco.yml b/.github/workflows/dco.yml deleted file mode 100644 index 66ea1d5..0000000 --- a/.github/workflows/dco.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Developer Certificate of Origin Check - -on: [pull_request] - -jobs: - check: - runs-on: ubuntu-latest - - steps: - - name: Get PR Commits - id: 'get-pr-commits' - uses: tim-actions/get-pr-commits@v1.3.1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - name: DCO Check - uses: tim-actions/dco@v1.1.0 - with: - commits: ${{ steps.get-pr-commits.outputs.commits }} \ No newline at end of file