├── .README ├── Screenshot_build_env.png ├── Screenshot_build_name.png └── Screenshot_build_step.png ├── .github ├── CODEOWNERS ├── dependabot.yml ├── release-drafter.yml └── workflows │ └── jenkins-security-scan.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── Jenkinsfile ├── LICENSE ├── README.md ├── appveyor.yml ├── pom.xml └── src ├── main ├── java │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ ├── EnvironmentVarSetter.java │ │ ├── buildnamesetter │ │ ├── BuildNameSetter.java │ │ └── Executor.java │ │ ├── buildnameupdater │ │ └── BuildNameUpdater.java │ │ └── pipeline │ │ ├── BuildDescriptionStep.java │ │ └── BuildNameStep.java └── resources │ ├── index.jelly │ └── org │ └── jenkinsci │ └── plugins │ ├── buildnamesetter │ └── BuildNameSetter │ │ ├── config.jelly │ │ ├── help-template.jelly │ │ └── help.html │ ├── buildnameupdater │ └── BuildNameUpdater │ │ ├── config.jelly │ │ ├── help-buildName.jelly │ │ ├── help-macroFirst.jelly │ │ ├── help-macroTemplate.jelly │ │ └── help.html │ └── pipeline │ ├── BuildDescriptionStep │ ├── config.jelly │ └── help.html │ └── BuildNameStep │ ├── config.jelly │ └── help.html └── test └── java └── org └── jenkinsci └── plugins └── buildnamesetter └── BuildNameSetterTest.java /.README/Screenshot_build_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.README/Screenshot_build_env.png -------------------------------------------------------------------------------- /.README/Screenshot_build_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.README/Screenshot_build_name.png -------------------------------------------------------------------------------- /.README/Screenshot_build_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.README/Screenshot_build_step.png -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jenkinsci/build-name-setter-plugin-developers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/EnvironmentVarSetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/java/org/jenkinsci/plugins/EnvironmentVarSetter.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/java/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/buildnamesetter/Executor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/java/org/jenkinsci/plugins/buildnamesetter/Executor.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/java/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/pipeline/BuildDescriptionStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/java/org/jenkinsci/plugins/pipeline/BuildDescriptionStep.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/pipeline/BuildNameStep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/java/org/jenkinsci/plugins/pipeline/BuildNameStep.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter/help-template.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter/help-template.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnamesetter/BuildNameSetter/help.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help-buildName.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help-buildName.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help-macroFirst.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help-macroFirst.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help-macroTemplate.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help-macroTemplate.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/buildnameupdater/BuildNameUpdater/help.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/pipeline/BuildDescriptionStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/pipeline/BuildDescriptionStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/pipeline/BuildDescriptionStep/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/pipeline/BuildDescriptionStep/help.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/pipeline/BuildNameStep/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/pipeline/BuildNameStep/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/pipeline/BuildNameStep/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/pipeline/BuildNameStep/help.html -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/buildnamesetter/BuildNameSetterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/build-name-setter-plugin/HEAD/src/test/java/org/jenkinsci/plugins/buildnamesetter/BuildNameSetterTest.java --------------------------------------------------------------------------------