Populate repo with useful documentations about the ocm project

Signed-off-by: Mike Ng <ming@redhat.com>
This commit is contained in:
Mike Ng
2021-10-01 16:58:16 -04:00
parent b3a26c7721
commit 4816e6ca83
21 changed files with 827 additions and 1 deletions

21
.github/workflows/dco.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: DCO
on:
workflow_dispatch: {}
pull_request:
branches:
- main
jobs:
dco_check:
runs-on: ubuntu-latest
name: DCO Check
steps:
- name: Get PR Commits
id: 'get-pr-commits'
uses: tim-actions/get-pr-commits@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: DCO Check
uses: tim-actions/dco@master
with:
commits: ${{ steps.get-pr-commits.outputs.commits }}