chore(deps): update all non-major dependencies #62
Workflow file for this run
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
name: Pull Request Open | |
on: | |
pull_request: | |
concurrency: | |
# PR open and close use the same group, allowing only one at a time | |
group: pr-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pr-validation: | |
name: Pull Request Validation | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
pull-requests: write | |
outputs: | |
version: ${{ steps.changelog.outputs.version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Pull request size and stability labels | |
uses: actions/labeler@v4 | |
continue-on-error: true | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Conventional Label | |
uses: bcoe/conventional-release-labels@v1 | |
continue-on-error: true | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
ignored_types: '["chore","pr"]' | |
type_labels: '{"feat": "feature", "fix": "fix", "bug": "fix", "doc": "documentation", "ci": "ci", "chore": "chore", "breaking": "breaking", "BREAKING CHANGE": "breaking"}' | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
with: | |
ref: refs/heads/${{ github.head_ref }} | |
- name: Conventional Changelog Update | |
continue-on-error: true | |
uses: TriPSs/conventional-changelog-action@v3 | |
id: changelog | |
with: | |
github-token: ${{ github.token }} | |
output-file: "CHANGELOG.md" | |
skip-version-file: "true" | |
skip-commit: "true" | |
git-push: "false" | |
git-branch: refs/heads/${{ github.head_ref }} | |
skip-on-empty: "false" | |
- name: Checkout pr | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- name: Comment PR | |
continue-on-error: true | |
uses: thollander/actions-comment-pull-request@v2 | |
if: ${{ steps.changelog.outputs.skipped == 'false' }} | |
with: | |
message: | | |
# Current changelog | |
${{ steps.changelog.outputs.clean_changelog }} | |
comment_tag: "# Current changelog" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Removing old core | |
uses: paulushcgcj/[email protected] | |
continue-on-error: true | |
with: | |
token: ${{ secrets.PAT }} | |
type: maven | |
name: ca.bc.gov.nrs-commons.forest-client-core | |
version: ${{ steps.changelog.outputs.version }}.PR${{ github.event.number }} | |
user: ${{ github.repository_owner }} | |
- name: Removing old spring | |
uses: paulushcgcj/[email protected] | |
continue-on-error: true | |
with: | |
token: ${{ secrets.PAT }} | |
type: maven | |
name: ca.bc.gov.nrs-commons.forest-client-spring | |
version: ${{ steps.changelog.outputs.version }}.PR${{ github.event.number }} | |
user: ${{ github.repository_owner }} | |
pr-greeting: | |
name: PR Greeting | |
runs-on: ubuntu-22.04 | |
needs: pr-validation | |
permissions: | |
pull-requests: write | |
steps: | |
- name: PR Greeting | |
uses: bcgov-nr/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
add_markdown: | | |
--- | |
Thanks for the PR! | |
``` | |
<dependency> | |
<groupId>ca.bc.gov.nrs-commons</groupId> | |
<artifactId>forest-client-core</artifactId> | |
<version>${{ needs.pr-validation.outputs.version }}.PR${{ github.event.number }}</version> | |
</dependency> | |
``` | |
``` | |
<dependency> | |
<groupId>ca.bc.gov.nrs-commons</groupId> | |
<artifactId>forest-client-spring</artifactId> | |
<version>${{ needs.pr-validation.outputs.version }}.PR${{ github.event.number }}</version> | |
</dependency> | |
``` | |
Once merged, the code will be promoted and handed off to the following workflow run. | |
[Main Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge-main.yml) | |
build-certextractor: | |
name: Builds Cert Extractor | |
runs-on: ubuntu-22.04 | |
needs: | |
- pr-validation | |
- pr-greeting | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bcgov-nr/[email protected] | |
name: Build Cert Extractor | |
with: | |
package: certextractor | |
tag: ${{ github.event.number }} | |
tag_fallback: test | |
token: ${{ secrets.GITHUB_TOKEN }} | |
triggers: "certextractor/" | |
build-core: | |
name: Build Core | |
runs-on: ubuntu-22.04 | |
needs: | |
- pr-validation | |
- pr-greeting | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bcgov-nr/[email protected] | |
name: Core Coverage | |
with: | |
commands: | | |
mvn -B verify -P all-tests checkstyle:checkstyle -Dcheckstyle.skip=false --file pom.xml | |
dir: core | |
java-cache: maven | |
java-distribution: temurin | |
java-version: "17" | |
sonar_args: > | |
-Dsonar.organization=bcgov-sonarcloud | |
-Dsonar.projectKey=bcgov_nr-forest-client-commons | |
sonar_project_token: ${{ secrets.SONAR_TOKEN_COMMONS }} | |
- name: Publish Core | |
uses: paulushcgcj/[email protected] | |
with: | |
dir: core | |
app-version: ${{ needs.pr-validation.outputs.version }}.PR${{ github.event.number }} | |
extra-params: -DskipTests -Dtests.skip=true | |
add-sources: true | |
add-javadoc: true | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
build-spring: | |
name: Build Spring | |
runs-on: ubuntu-22.04 | |
needs: | |
- pr-validation | |
- pr-greeting | |
- build-core | |
permissions: | |
packages: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bcgov-nr/[email protected] | |
name: Spring Coverage | |
with: | |
commands: | | |
mvn versions:use-dep-version -DdepVersion=${{ needs.pr-validation.outputs.version }}.PR${{ github.event.number }} -Dincludes=ca.bc.gov.nrs-commons:forest-client-core -DforceVersion=true --file pom.xml | |
mvn -B verify -P all-tests checkstyle:checkstyle -Dcheckstyle.skip=false --file pom.xml | |
dir: spring | |
java-cache: maven | |
java-distribution: temurin | |
java-version: "17" | |
sonar_args: > | |
-Dsonar.organization=bcgov-sonarcloud | |
-Dsonar.projectKey=bcgov_nr-forest-client-commons | |
sonar_project_token: ${{ secrets.SONAR_TOKEN_COMMONS }} | |
- name: Publish Spring | |
uses: paulushcgcj/[email protected] | |
with: | |
commands: mvn versions:use-dep-version -DdepVersion=${{ needs.pr-validation.outputs.version }}.PR${{ github.event.number }} -Dincludes=ca.bc.gov.nrs-commons:forest-client-core -DforceVersion=true --file pom.xml | |
dir: spring | |
app-version: ${{ needs.pr-validation.outputs.version }}.PR${{ github.event.number }} | |
extra-params: -DskipTests -Dtests.skip=true | |
add-sources: true | |
add-javadoc: true | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |