Skip to content

Add DCO and conventional commits #1

Add DCO and conventional commits

Add DCO and conventional commits #1

Workflow file for this run

---
name: Commit Conformance
on:
pull_request:
branches: ["main"]
jobs:
signoff:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup main branch without switching current branch
run: git fetch origin main:main
- name: Conform Action
uses: siderolabs/[email protected]
with:
args: "enforce --base-branch=main"