Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jenkinsci/slack-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 608.v19e3b_44b_b_9ff
Choose a base ref
...
head repository: jenkinsci/slack-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 615.v303846e9802d
Choose a head ref
  • 7 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 22, 2022

  1. Bump json from 20211205 to 20220320 (#802)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 22, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    78236bd View commit details
  2. Bump plugin from 4.37 to 4.38 (#801)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 22, 2022
    Copy the full SHA
    9cff675 View commit details

Commits on Apr 4, 2022

  1. Bump plugin from 4.38 to 4.39 (#806)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 4, 2022
    Copy the full SHA
    74f03f2 View commit details

Commits on Apr 11, 2022

  1. Bump plugin from 4.39 to 4.40 (#807)

    Bumps [plugin](https://github.com/jenkinsci/plugin-pom) from 4.39 to 4.40.
    - [Release notes](https://github.com/jenkinsci/plugin-pom/releases)
    - [Changelog](https://github.com/jenkinsci/plugin-pom/blob/master/CHANGELOG.md)
    - [Commits](jenkinsci/plugin-pom@plugin-4.39...plugin-4.40)
    
    ---
    updated-dependencies:
    - dependency-name: org.jenkins-ci.plugins:plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 11, 2022
    Copy the full SHA
    2f626e8 View commit details

Commits on May 9, 2022

  1. Bump jenkins-infra/interesting-category-action from 1.0.0 to 1.1.0 (#816

    )
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 9, 2022
    Copy the full SHA
    fd5d0cb View commit details
  2. Bump jenkins-infra/jenkins-maven-cd-action from 1.2.0 to 1.3.0 (#815)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 9, 2022
    Copy the full SHA
    ca37f52 View commit details

Commits on Jun 15, 2022

  1. Copy the full SHA
    303846e View commit details
Showing with 7 additions and 51 deletions.
  1. +5 −49 .github/workflows/cd.yaml
  2. +2 −2 pom.xml
54 changes: 5 additions & 49 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -8,52 +8,8 @@ on:
- completed

jobs:
validate:
runs-on: ubuntu-latest
outputs:
should_release: ${{ steps.verify-ci-status.outputs.result == 'success' && steps.interesting-categories.outputs.interesting == 'true' }}
steps:
- name: Verify CI status
uses: jenkins-infra/verify-ci-status-action@v1.2.0
id: verify-ci-status
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
output_result: true

- name: Release Drafter
uses: release-drafter/release-drafter@v5
if: steps.verify-ci-status.outputs.result == 'success'
with:
name: next
tag: next
version: next
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Check interesting categories
uses: jenkins-infra/interesting-category-action@v1.0.0
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/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 8
- name: Release
uses: jenkins-infra/jenkins-maven-cd-action@v1.2.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }}
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 }}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.37</version>
<version>4.40</version>
</parent>

<artifactId>slack</artifactId>
@@ -71,7 +71,7 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20211205</version>
<version>20220320</version>
</dependency>

<!-- required plugins -->