Skip to content

Commit

Permalink
Merge pull request #138 from jimklimov/incr
Browse files Browse the repository at this point in the history
Enable automatic release on merge to master
  • Loading branch information
jimklimov authored Nov 22, 2022
2 parents 5c0ab55 + f8fa75c commit 3ce6b64
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 26 deletions.
3 changes: 0 additions & 3 deletions .github/release-drafter.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Note: additional setup is required, see https://www.jenkins.io/redirect/continuous-delivery-of-plugins

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 }}
17 changes: 0 additions & 17 deletions .github/workflows/release-drafter.yml

This file was deleted.

1 change: 1 addition & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
-Pconsume-incrementals
-Pmight-produce-incrementals
-Dchangelist.format=%d.v%s
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>ircbot</artifactId>
<packaging>hpi</packaging>
<version>${revision}${changelist}</version>
<version>${revision}.${changelist}</version>

<name>Jenkins IRC Plugin</name>
<description>A build status publisher that notifies channels on an IRC server</description>
Expand All @@ -29,11 +29,11 @@
</licenses>

<properties>
<revision>2.47</revision>
<changelist>-SNAPSHOT</changelist>
<revision>3</revision>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<version.instant-messaging.plugin>1.53</version.instant-messaging.plugin>
<jenkins.version>2.332.4</jenkins.version>
<jenkins.version>2.332.4</jenkins.version>
<!-- Note: keep in sync with io.jenkins.tools.bom version below -->
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>instant-messaging</artifactId>
<version>${version.instant-messaging.plugin}</version>
<version>1.53</version>
<exclusions>
<!-- Provided by Jenkins core -->
<exclusion>
Expand Down

0 comments on commit 3ce6b64

Please sign in to comment.