Skip to content

Commit

Permalink
chore: Add SetupDCO target
Browse files Browse the repository at this point in the history
Signed-off-by: Kim Christensen <[email protected]>
  • Loading branch information
kichristensen committed Aug 30, 2024
1 parent 6b82107 commit 4a449a7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ package main

import (
"get.porter.sh/magefiles/ci"
"get.porter.sh/magefiles/git"
"get.porter.sh/magefiles/porter"
"get.porter.sh/magefiles/tools"
"github.com/carolynvs/magex/mgx"
Expand Down Expand Up @@ -38,3 +39,9 @@ func Test() {

must.RunV("go", "test", "./...")
}

// SetupDCO configures your git repository to automatically sign your commits
// to comply with our DCO
func SetupDCO() error {
return git.SetupDCO()
}

0 comments on commit 4a449a7

Please sign in to comment.