From 3a35bb612e9c078a05505e2f9231958a5719193a Mon Sep 17 00:00:00 2001 From: Annie Lee <71157062+leeyun-amzn@users.noreply.github.com> Date: Mon, 8 Nov 2021 17:23:03 -0800 Subject: [PATCH] Update release note and copy right notice, and add dco workflow (#229) Signed-off-by: Annie Lee --- .github/workflows/dco.yml | 18 ++++++++++++++++++ NOTICE.txt | 4 ++-- ...pensearch-alerting.release-notes-1.2.0.0.md | 1 + 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/dco.yml diff --git a/.github/workflows/dco.yml b/.github/workflows/dco.yml new file mode 100644 index 000000000..53ed5304c --- /dev/null +++ b/.github/workflows/dco.yml @@ -0,0 +1,18 @@ +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 }} \ No newline at end of file diff --git a/NOTICE.txt b/NOTICE.txt index be83767d4..6c7dc983f 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ -OpenSearch -Copyright 2021 OpenSearch Contributors +OpenSearch (https://opensearch.org/) +Copyright OpenSearch Contributors This product includes software developed by Elasticsearch (http://www.elastic.co). diff --git a/release-notes/opensearch-alerting.release-notes-1.2.0.0.md b/release-notes/opensearch-alerting.release-notes-1.2.0.0.md index 5cfe0b553..9388478db 100644 --- a/release-notes/opensearch-alerting.release-notes-1.2.0.0.md +++ b/release-notes/opensearch-alerting.release-notes-1.2.0.0.md @@ -27,4 +27,5 @@ Compatible with OpenSearch 1.2.0 ### Maintenance * Update copyright notice ([#222](https://github.com/opensearch-project/alerting/pull/222)) +* Update copyright notice and add DCO workflow ([#229](https://github.com/opensearch-project/alerting/pull/229))