Skip to content

Commit

Permalink
Adds developer certificate of origin check (opensearch-project#189)
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Downs <downsrob@amazon.com>
  • Loading branch information
downsrob committed Mar 9, 2022
1 parent 53556f6 commit 9638fc7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/dco.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 9638fc7

Please sign in to comment.