Skip to content

chore(release): prepare v0.8.0 #305

chore(release): prepare v0.8.0

chore(release): prepare v0.8.0 #305

Workflow file for this run

name: DCO Sign-off Check
on: pull_request
concurrency:
group: dco-signoff-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
dco:
if: github.event.pull_request.user.login != 'dependabot[bot]'
name: Check Signed-off-by (DCO)
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Check DCO sign-off on all commits
run: make check-dco
env:
DCO_BASE: ${{ github.event.pull_request.base.sha }}
DCO_HEAD: ${{ github.event.pull_request.head.sha }}