Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linkify Jira component remove Jenkinsfile note #3797

Merged
merged 1 commit into from Mar 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -118,8 +118,8 @@ private void run(int issueID) {

String issueTrackerText;
if (issueTrackerChoice == IssueTracker.JIRA) {
issueTrackerText = "\n\nA Jira component named " + forkTo + " has also been created with "
+ defaultAssignee + " as the default assignee for issues.";
issueTrackerText = "\n\nA Jira component named [" + forkTo + "](https://issues.jenkins.io/issues/?jql=project+%3D+JENKINS+AND+component+%3D+ " + forkTo + ")" +
"has also been created with " + defaultAssignee + " as the default assignee for issues.";
} else {
issueTrackerText = "\n\nGitHub issues has been selected for issue tracking and was enabled for the forked repo.";
}
Expand All @@ -136,10 +136,7 @@ private void run(int issueID) {
+ "You will also need to do the following in order to push changes and release your plugin: \n\n"
+ "* [Accept the invitation to the Jenkins CI Org on Github](https://github.com/jenkinsci)\n"
+ "* [" + repoPermissionsActionText + "](https://github.com/jenkins-infra/repository-permissions-updater/#requesting-permissions)\n"
+ "* [Releasing your plugin](https://jenkins.io/doc/developer/publishing/releasing/)\n"
+ "\n\nIn order for your plugin to be built by the [Jenkins CI Infrastructure](https://ci.jenkins.io) and check pull requests,"
+ " please add a [Jenkinsfile](https://jenkins.io/doc/book/pipeline/jenkinsfile/) to the root of your repository with the following content:\n"
+ "https://github.com/jenkinsci/archetypes/blob/master/common-files/Jenkinsfile\n"
+ "* [Releasing your plugin](https://jenkins.io/doc/developer/publishing/releasing/)"
+ "\n\nWelcome aboard!";

// add comment
Expand Down