jenkinsci / jenkinsci/github-issues-plugin
fails to create issue
- 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
Assessment
This issue has not been assessed yet.