6e12493623
File have been taken from neofs-http-gw. Commit 9604f9f4b16bbe211cf967c6d270ecb412fb0a208. Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
21 lines
441 B
YAML
21 lines
441 B
YAML
name: DCO check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
commits_check_job:
|
|
runs-on: ubuntu-latest
|
|
name: Commits 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 }}
|