Skip to content

Commit

Permalink
Merge pull request #163 from PierreBtz/pbeitz/enable-cd
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBtz committed Oct 6, 2022
2 parents 0c20fb1 + 9d7341d commit 1821e6a
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 25 deletions.
7 changes: 4 additions & 3 deletions .github/dependabot.yml
Expand Up @@ -6,6 +6,7 @@ updates:
directory: "/"
schedule:
interval: "weekly"
reviewers:
- "aheritier"
- "kwhetstone"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
2 changes: 0 additions & 2 deletions .github/release-drafter.yml
@@ -1,4 +1,2 @@
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
_extends: .github
tag-template: cloudbees-jenkins-advisor-$NEXT_MINOR_VERSION
name-template: Jenkins Health Advisor by CloudBees $NEXT_MINOR_VERSION
13 changes: 13 additions & 0 deletions .github/workflows/cd.yaml
@@ -0,0 +1,13 @@
name: cd
on:
workflow_dispatch:
check_run:
types:
- completed

jobs:
maven-cd:
uses: jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@v1
secrets:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }}
18 changes: 0 additions & 18 deletions .github/workflows/release-drafter.yml

This file was deleted.

1 change: 1 addition & 0 deletions .mvn/maven.config
@@ -1,2 +1,3 @@
-Pconsume-incrementals
-Pmight-produce-incrementals
-Dchangelist.format=%d.v%s
21 changes: 19 additions & 2 deletions pom.xml
Expand Up @@ -10,12 +10,12 @@
</parent>

<artifactId>cloudbees-jenkins-advisor</artifactId>
<version>${revision}${changelist}</version>
<version>${changelist}</version>
<packaging>hpi</packaging>

<properties>
<revision>3.3.4</revision>
<changelist>-SNAPSHOT</changelist>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<jenkins.version>2.319.3</jenkins.version>
<hpi.pluginChangelogUrl>https://github.com/jenkinsci/cloudbees-jenkins-advisor-plugin/releases</hpi.pluginChangelogUrl>
Expand All @@ -38,16 +38,33 @@
<id>owood</id>
<name>Owen Wood</name>
<email>owood@cloudbees.com</email>
<roles>
<role>Maintainer (retired)</role>
</roles>
</developer>
<developer>
<id>kwhetstone</id>
<name>Kristin Whetstone</name>
<email>kwhetstone@cloudbees.com</email>
<roles>
<role>Maintainer (retired)</role>
</roles>
</developer>
<developer>
<id>aheritier</id>
<name>Arnaud Héritier</name>
<email>aheritier@cloudbees.com</email>
<roles>
<role>Maintainer (retired)</role>
</roles>
</developer>
<developer>
<id>pierrebtz</id>
<name>Pierre Beitz</name>
<email>pbeitz@cloudbees.com</email>
<roles>
<role>Maintainer</role>
</roles>
</developer>
</developers>

Expand Down

0 comments on commit 1821e6a

Please sign in to comment.