-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into release-8.7.0-alpha3
# Conflicts: # pom.xml
- Loading branch information
Showing
33 changed files
with
1,922 additions
and
120 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -66,7 +66,7 @@ jobs: | |
|
||
- name: Build | ||
id: build | ||
run: mvn -B -U -pl "-:zeebe-process-test-qa-testcontainers" -P !localBuild "-Dsurefire.rerunFailingTestsCount=5" clean install | ||
run: mvn -B -U -pl "-:zeebe-process-test-qa-testcontainers,-:spring-boot-starter-camunda-test-testcontainer" -P !localBuild "-Dsurefire.rerunFailingTestsCount=5" clean install | ||
|
||
- name: Archive Test Results | ||
uses: actions/upload-artifact@v4 | ||
|
@@ -113,18 +113,9 @@ jobs: | |
IMAGE_NAME_KEY: container.image.name | ||
IMAGE_TAG_KEY: container.image.tag | ||
|
||
- name: Downgrade Java environment | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 8 | ||
cache: maven | ||
|
||
# Deleting .mvn/jvm.config is a workaround for JDK8, which does not support the --add-exports options | ||
- name: Build | ||
id: build | ||
run: | | ||
rm .mvn/jvm.config | ||
mvn clean -B -U -pl ":zeebe-process-test-qa-testcontainers" -P !localBuild -am "-Dsurefire.rerunFailingTestsCount=5" install -DskipChecks | ||
- name: Archive Test Results | ||
|
@@ -159,51 +150,3 @@ jobs: | |
name: Event File | ||
path: ${{ github.event_path }} | ||
retention-days: 1 | ||
|
||
auto-merge: | ||
# This workflow will auto merge a PR authored by dependabot[bot]. It runs only on open PRs ready for | ||
# review. | ||
# | ||
# It will merge the PR only if: it is authored by dependabot[bot], is a minor or patch semantic | ||
# update, and all CI checks are successful (ignoring the soon-to-be-removed Jenkins check). | ||
# | ||
# The workflow is divided into multiple sequential jobs to allow giving only minimal permissions to | ||
# the GitHub token passed around. | ||
# | ||
# Once we're using the merge queue feature, I think we can simplify this workflow a lot by relying | ||
# on dependabot merging PRs via its commands, as it will always wait for checks to be green before | ||
# merging. | ||
name: Auto-merge dependabot, camundait, and backport PRs | ||
runs-on: ubuntu-latest | ||
needs: [ test-summary ] | ||
if: github.repository == 'camunda/zeebe-process-test' && (github.actor == 'dependabot[bot]' || github.actor == 'camundait' || github.actor == 'backport-action') | ||
permissions: | ||
checks: read | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: metadata | ||
if: github.actor == 'dependabot[bot]' | ||
name: Fetch dependency metadata | ||
uses: dependabot/[email protected] | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
- id: approve-and-merge-dependabot | ||
name: Approve and merge dependabot PR | ||
if: github.actor == 'dependabot[bot]' && (steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor') | ||
run: > | ||
gh pr review --approve "$PR_URL" | ||
gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
- id: approve-and-merge-backport | ||
name: Approve and merge backport PR | ||
if: github.actor != 'dependabot[bot]' | ||
run: > | ||
gh pr review --approve "$PR_URL" | ||
gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GH_TOKEN: ${{secrets.GITHUB_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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without 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
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
Oops, something went wrong.