Vitaliy Potyarkin
7a1d2c9e2d
This commit is a part of multi-repo cleanup effort: TrueCloudLab/frostfs-infra#136 Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
26 lines
530 B
YAML
26 lines
530 B
YAML
# yamllint disable rule:truthy
|
|
|
|
name: DCO check
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
dco:
|
|
name: DCO
|
|
runs-on: docker
|
|
container:
|
|
image: node:22-bookworm
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.22'
|
|
|
|
- name: Run commit format checker
|
|
uses: https://git.frostfs.info/TrueCloudLab/dco-go@v3
|
|
with:
|
|
from: 'origin/${{ github.event.pull_request.base.ref }}'
|