-
Notifications
You must be signed in to change notification settings - Fork 0
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 #49 from Lukinhasssss/feature/tests-with-virtual-t…
…hreads Automated PR from feature/tests-with-virtual-threads
- Loading branch information
Showing
67 changed files
with
879 additions
and
962 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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Open Pull Request | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'feature/*' | ||
- 'develop' | ||
|
||
jobs: | ||
open_pull_request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Extract branch name | ||
shell: bash | ||
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV | ||
|
||
- name: Create Pull Request | ||
uses: repo-sync/pull-request@v2 | ||
with: | ||
source_branch: "${{ github.ref }}" | ||
destination_branch: ${{ startsWith(github.ref, 'refs/heads/feature/') && 'develop' || 'main' }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
pr_title: "Automated PR from ${{ env.BRANCH_NAME }}" | ||
pr_body: "New changes to ${{ env.BRANCH_NAME }}. Check the files changed and merge if everything is ok." | ||
pr_label: 'automated-pr' |
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
object Version { | ||
const val PROJECT = "1.0.0" | ||
const val KOTLIN = "1.9.21" | ||
const val DETEKT = "1.23.4" | ||
const val KOTLIN = "1.9.23" | ||
const val DETEKT = "1.23.6" | ||
const val KTLINT = "11.3.1" | ||
const val JACOCO = "0.8.10" | ||
const val FLYWAY = "9.18.0" | ||
const val FLYWAY = "10.13.0" | ||
const val SONARQUBE = "4.0.0.2929" | ||
const val SPRING_BOOT = "3.2.1" | ||
const val SPRING_DEPENDENCY_MANAGEMENT = "1.1.0" | ||
const val TEST_CONTAINERS = "1.19.3" | ||
const val SPRING_BOOT = "3.3.0" | ||
const val SPRING_DEPENDENCY_MANAGEMENT = "1.1.4" | ||
const val TEST_CONTAINERS = "1.19.7" | ||
const val VAVR = "0.10.2" | ||
const val GATLING = "3.9.3.1" | ||
} |
Oops, something went wrong.