diff --git a/plugins/jenkins/api-report.md b/plugins/jenkins/api-report.md index 883e74071d..5a50c14f87 100644 --- a/plugins/jenkins/api-report.md +++ b/plugins/jenkins/api-report.md @@ -43,7 +43,7 @@ export { isJenkinsAvailable as isPluginApplicableToEntity }; // Warning: (ae-missing-release-tag) "JENKINS_ANNOTATION" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) -export const JENKINS_ANNOTATION = 'jenkins.io/github-folder'; +export const JENKINS_ANNOTATION = 'jenkins.io/job-full-name'; // Warning: (ae-missing-release-tag) "JenkinsApi" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // @@ -143,6 +143,11 @@ export const LatestRunCard: ({ variant?: InfoCardVariants | undefined; }) => JSX.Element; +// Warning: (ae-missing-release-tag) "LEGACY_JENKINS_ANNOTATION" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export const LEGACY_JENKINS_ANNOTATION = 'jenkins.io/github-folder'; + // Warning: (ae-forgotten-export) The symbol "Props" needs to be exported by the entry point index.d.ts // Warning: (ae-missing-release-tag) "Router" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) // diff --git a/plugins/jenkins/src/constants.ts b/plugins/jenkins/src/constants.ts index 50a59db696..fc0ea0bba4 100644 --- a/plugins/jenkins/src/constants.ts +++ b/plugins/jenkins/src/constants.ts @@ -13,6 +13,5 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - export const LEGACY_JENKINS_ANNOTATION = 'jenkins.io/github-folder'; export const JENKINS_ANNOTATION = 'jenkins.io/job-full-name';