Skip to content

Commit ec2b2c5

Browse files
authored
Refresh plugin for November 2024 (#390)
1 parent a480513 commit ec2b2c5

File tree

6 files changed

+46
-10
lines changed

6 files changed

+46
-10
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @jenkinsci/electricflow-plugin-developers

.github/dependabot.yml

+4
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ updates:
88
schedule:
99
interval: "weekly"
1010
open-pull-requests-limit: 20
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"

.github/release-drafter.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
2+
---
3+
_extends: .github
4+
version-template: $MAJOR.$MINOR.$PATCH
5+
tag-template: electricflow-$NEXT_PATCH_VERSION
6+
name-template: $NEXT_PATCH_VERSION

.github/workflows/release-drafter.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Automates creation of Release Drafts using Release Drafter
2+
# More Info: https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
3+
---
4+
on:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
update_release_draft:
11+
runs-on: ubuntu-latest
12+
steps:
13+
# Drafts your next Release notes as Pull Requests are merged into "master"
14+
- uses: release-drafter/release-drafter@v6
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
.DS_Store
21
target
3-
.idea
4-
pom.xml.releaseBackup
5-
release.properties
6-
electricflow.iml
7-
runConfigurations
2+
3+
# mvn hpi:run
84
work
95

6+
# IntelliJ IDEA project files
7+
*.iml
8+
*.iws
9+
*.ipr
10+
.idea
11+
12+
# Eclipse project files
13+
.settings
14+
.classpath
15+
.project

pom.xml

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>4.85</version>
8+
<version>4.88</version>
99
<relativePath />
1010
</parent>
1111

@@ -41,7 +41,8 @@
4141
<properties>
4242
<revision>1.1.38</revision>
4343
<changelist>-SNAPSHOT</changelist>
44-
<jenkins.version>2.426.3</jenkins.version>
44+
<jenkins.baseline>2.426</jenkins.baseline>
45+
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
4546
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
4647
<!-- TODO fix existing violations -->
4748
<spotbugs.threshold>High</spotbugs.threshold>
@@ -52,13 +53,14 @@
5253
<dependencies>
5354
<dependency>
5455
<groupId>io.jenkins.tools.bom</groupId>
55-
<artifactId>bom-2.361.x</artifactId>
56-
<version>2102.v854b_fec19c92</version>
56+
<artifactId>bom-${jenkins.baseline}.x</artifactId>
57+
<version>3208.vb_21177d4b_cd9</version>
5758
<type>pom</type>
5859
<scope>import</scope>
5960
</dependency>
6061
</dependencies>
6162
</dependencyManagement>
63+
6264
<dependencies>
6365
<dependency>
6466
<groupId>org.jenkins-ci.plugins</groupId>
@@ -148,6 +150,7 @@
148150
<url>https://repo.jenkins-ci.org/public/</url>
149151
</repository>
150152
</repositories>
153+
151154
<pluginRepositories>
152155
<pluginRepository>
153156
<id>repo.jenkins-ci.org</id>

0 commit comments

Comments
 (0)