Skip to content

Commit 5906d1b

Browse files
committed
Add mage target SetupDCO
Signed-off-by: Kim Christensen <[email protected]>
1 parent 19e1d5b commit 5906d1b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

magefile.go

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
package main
44

55
import (
6+
"get.porter.sh/magefiles/git"
67
"get.porter.sh/magefiles/mixins"
78
)
89

@@ -57,3 +58,9 @@ func Install() {
5758
func Clean() {
5859
magefile.Clean()
5960
}
61+
62+
// SetupDCO configures your git repository to automatically sign your commits
63+
// to comply with our DCO
64+
func SetupDCO() error {
65+
return git.SetupDCO()
66+
}

0 commit comments

Comments
 (0)