feat: add pull request linting action and validation logic
This commit is contained in:
parent
d0e7c0bec7
commit
09380fb8d0
6 changed files with 154 additions and 0 deletions
11
main.go
Normal file
11
main.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package pullrequestlint
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
prTitle := os.Getenv("GITEA_PULL_REQUEST_TITLE")
|
||||
fmt.Println(prTitle)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue