11 lines
138 B
Go
11 lines
138 B
Go
package pullrequestlint
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
prTitle := os.Getenv("GITEA_PULL_REQUEST_TITLE")
|
|
fmt.Println(prTitle)
|
|
}
|