pull-request-lint/main.go
Jan Klattenhoff 6d9c48078c
All checks were successful
Lint Pull Request / Lint Pr Title (pull_request) Successful in 9s
feat(action): update to use Go for pull request linting
2025-04-09 18:10:18 +02:00

11 lines
127 B
Go

package main
import (
"fmt"
"os"
)
func main() {
prTitle := os.Getenv("GITEA_PULL_REQUEST_TITLE")
fmt.Println(prTitle)
}