diff --git a/main.go b/main.go index 967e570..47d5f37 100644 --- a/main.go +++ b/main.go @@ -33,9 +33,6 @@ func main() { repoOwner := os.Getenv("REPO_OWNER") repoName := os.Getenv("REPO_NAME") - logger.Printf("Environment variables: ISSUE_NUMBER=%s, ISSUE_TITLE=%s, ISSUE_LABELS=%s, GITEA_TOKEN=%s, GITEA_URL=%s, REPO_OWNER=%s, REPO_NAME=%s\n", - issueNumberStr, issueTitle, labelsStr, giteaToken, giteaAPIURL, repoOwner, repoName) - if issueNumberStr == "" || issueTitle == "" || giteaToken == "" || giteaAPIURL == "" || repoOwner == "" || repoName == "" { logger.Println("Error: some environment variables are missing.") os.Exit(1)