Skip to content

Commit

Permalink
enable cd (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
car-roll authored Jan 6, 2023
1 parent cdd76a5 commit 8cabafe
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 30 deletions.
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "maven"
- package-ecosystem: maven
directory: "/"
schedule:
interval: "weekly"
interval: weekly
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
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 }}
22 changes: 0 additions & 22 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Changelog

For newer versions, see [GitHub Releases](https://github.com/jenkinsci/ldap-plugin/releases)

### Version 1.20 (19th Feb 2018)

- [JENKINS-48917](https://issues.jenkins-ci.org/browse/JENKINS-48917):
Expand Down
5 changes: 2 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>ldap</artifactId>
<version>${revision}${changelist}</version>
<version>${changelist}</version>
<packaging>hpi</packaging>

<name>LDAP Plugin</name>
Expand All @@ -23,8 +23,7 @@
</licenses>

<properties>
<revision>2.13</revision>
<changelist>-SNAPSHOT</changelist>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<apacheds.version>2.0.0.AM25</apacheds.version>
<jenkins.version>2.346.1</jenkins.version>
Expand Down

0 comments on commit 8cabafe

Please sign in to comment.