forked from jenkinsci/katalon-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from katalon-studio/Rebase-with-jenkinsci-master
Rebase with jenkinsci master
- Loading branch information
Showing
10 changed files
with
105 additions
and
369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name-template: 'v$NEXT_PATCH_VERSION' | ||
# tag-template: 'v$NEXT_PATCH_VERSION' | ||
categories: | ||
- title: '🚀 Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
label: 'chore' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
template: | | ||
## Changes | ||
$CHANGES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Note: additional setup is required, see https://www.jenkins.io/redirect/continuous-delivery-of-plugins | ||
|
||
name: cd | ||
on: | ||
push: | ||
branches: master | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_release: ${{ steps.verify-ci-status.outputs.result == 'success' && steps.interesting-categories.outputs.interesting == 'true' }} | ||
steps: | ||
- name: Check out | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Verify CI status | ||
uses: jenkins-infra/[email protected] | ||
id: verify-ci-status | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
output_result: true | ||
|
||
- name: Get Project Version from pom.xml | ||
uses: entimaniac/[email protected] | ||
id: getVersion | ||
|
||
- name: Release Drafter | ||
uses: release-drafter/release-drafter@v5 | ||
# if: steps.verify-ci-status.outputs.result == 'success' | ||
with: | ||
name: next | ||
tag: ${{ steps.getVersion.outputs.version }} | ||
version: ${{ steps.getVersion.outputs.version }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Check interesting categories | ||
uses: jenkins-infra/[email protected] | ||
id: interesting-categories | ||
# if: steps.verify-ci-status.outputs.result == 'success' | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
release: | ||
runs-on: ubuntu-latest | ||
needs: [validate] | ||
# if: needs.validate.outputs.should_release == 'true' | ||
steps: | ||
- name: Check out | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK 8 | ||
uses: actions/[email protected] | ||
with: | ||
distribution: temurin | ||
java-version: 8 | ||
- name: Check Secrets | ||
env: | ||
DEBUG_USERNAME: ${{ secrets.MAVEN_USERNAME }} | ||
DEBUG_TOKEN: ${{ secrets.MAVEN_TOKEN }} | ||
run: | | ||
echo $DEBUG_USERNAME | ||
echo $DEBUG_TOKEN | ||
- name: Release | ||
uses: jenkins-infra/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | ||
MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,9 @@ | |
*.iml | ||
work | ||
target | ||
config | ||
config | ||
bin | ||
.settings | ||
.project | ||
.classpath | ||
.factorypath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"java.configuration.updateBuildConfiguration": "automatic" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,10 @@ | |
|
||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>katalon</artifactId> | ||
<version>1.0.36</version> | ||
<version>1.0.37</version> | ||
<packaging>hpi</packaging> | ||
<name>Katalon Plugin</name> | ||
<url>https://github.com/jenkinsci/katalon-plugin</url> | ||
<url>https://github.com/katalon-studio/katalon-studio-jenkins-plugin</url> | ||
|
||
<properties> | ||
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. --> | ||
|
@@ -45,19 +45,14 @@ | |
</organization> | ||
|
||
<developers> | ||
<developer> | ||
<id>devalex88</id> | ||
<name>Alex</name> | ||
<email>[email protected]</email> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:jenkinsci/${project.artifactId}-plugin.git</developerConnection> | ||
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
</scm> | ||
|
||
<repositories> | ||
<repository> | ||
|
207 changes: 0 additions & 207 deletions
207
src/main/java/com/katalon/jenkins/plugin/KatalonUtils.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.