From c6a15841db9edf234f6c106908bcd3cf964e2857 Mon Sep 17 00:00:00 2001 From: Louis Chu Date: Wed, 21 Dec 2022 17:20:58 -0500 Subject: [PATCH] Remove DCO config and update PR template link (#51) * Remove DCO config Signed-off-by: Lingzhi Chu * Update templates Signed-off-by: Lingzhi Chu Signed-off-by: Lingzhi Chu (cherry picked from commit 6ead87e3b1254427a1ce427fa260d84df66fd1bf) --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .../workflows/create-documentation-issue.yml | 2 +- .github/workflows/dco.yml | 18 ------------------ 3 files changed, 2 insertions(+), 20 deletions(-) delete mode 100644 .github/workflows/dco.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 19cd65f..7a52fcd 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -12,4 +12,4 @@ - [ ] Commits are signed as per the DCO using --signoff By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. -For more information on following Developer Certificate of Origin and signing off your commits, please check [here](https://github.com/opensearch-project/k-NN/blob/main/CONTRIBUTING.md#developer-certificate-of-origin). +For more information on following Developer Certificate of Origin and signing off your commits, please check [here](https://github.com/opensearch-project/search-processor/blob/main/CONTRIBUTING.md). diff --git a/.github/workflows/create-documentation-issue.yml b/.github/workflows/create-documentation-issue.yml index 1ab6e8b..cb1eb40 100644 --- a/.github/workflows/create-documentation-issue.yml +++ b/.github/workflows/create-documentation-issue.yml @@ -25,7 +25,7 @@ jobs: - name: Edit the issue template run: | - echo "https://github.com/opensearch-project/k-NN/pull/${{ env.PR_NUMBER }}." >> ./.github/ISSUE_TEMPLATE/documentation-issue.md + echo "https://github.com/opensearch-project/search-processor/pull/${{ env.PR_NUMBER }}." >> ./.github/ISSUE_TEMPLATE/documentation-issue.md - name: Create Issue From File id: create-issue diff --git a/.github/workflows/dco.yml b/.github/workflows/dco.yml deleted file mode 100644 index cf30ea8..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.1.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - name: DCO Check - uses: tim-actions/dco@v1.1.0 - with: - commits: ${{ steps.get-pr-commits.outputs.commits }}