jenkinsci / jenkinsci/github-issues-plugin

fails to create issue

Open
#17 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
Java
Stars
5
Forks
5
PR merge metrics
No merged PRs in 30d

Description

I have this simple DSL pipeline
```
pipeline {
agent any
stages {
stage('Example') {
steps {
script{
echo 'Hello World'
properties([[$class: 'GithubProjectProperty',
projectUrlStr: 'https://github.com/ramprasadgk/java-maven.git']])
}
}
}
}
post {
always {
echo 'I will always say Hello again!'

step([$class: 'GitHubIssueNotifier',
issueAppend: true, issueTitle: 'test'])
}
}
}

```
pipeline runs without any issue however no issues are created
am i missing something?

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.