Skip to content

Commit

Permalink
enable-cd and rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardbdas committed Dec 18, 2023
1 parent d8829c2 commit e9c6d23
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates

version: 2
updates:
- package-ecosystem: maven
Expand All @@ -10,3 +8,11 @@ updates:
directory: /
schedule:
interval: monthly
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
2 changes: 0 additions & 2 deletions .github/release-drafter.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -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@setup # TODO main after https://github.com/jenkins-infra/github-reusable-workflows/pull/1
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.

6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>simplify-qa-connector</artifactId>
<version>${revision}${changelist}</version>
<version>${changelist}</version>
<packaging>hpi</packaging>
<name>SimplifyQA Pipeline Executor</name>
<description>SimplifyQA Jenkins Connector is a Plugin to trigger automation of suites in SimplifyQA after build.</description>
Expand All @@ -23,7 +23,7 @@
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
<connection>scm:git:https://github.com/${gitHubRepo}</connection>
<developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection>
<tag>${project.scmTag}</tag>
<tag>${scmTag}</tag>
<url>https://github.com/${gitHubRepo}</url>
</scm>
<properties>
Expand All @@ -33,8 +33,8 @@
<jenkins.version>2.375.1</jenkins.version>
<hpi.compatibleSinceVersion>1.0</hpi.compatibleSinceVersion>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<scmTag>v${project.revision}${project.changelist}</scmTag>
<spotless.check.skip>false</spotless.check.skip>
<changelist>999999-SNAPSHOT</changelist>
</properties>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit e9c6d23

Please sign in to comment.