Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename the library to gradleCheckFlakyTestDetector and flaky-test label to created issue. #445

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jacocoTestReport {
}
}

String version = '6.5.0'
String version = '6.5.1'

task updateVersion {
doLast {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
* compatible open source license.
*/

/** Library to detect Gradle Check flaky tests and create GitHub issue in OpenSearch repository.
@param Map args = [:] args A map of the following parameters
@param args.issueLabels <required> - GitHub labels that will be added to the issue created in OpenSearch repository.
*/

import gradlecheck.FetchPostMergeFailedTestClass
import gradlecheck.FetchPostMergeTestGitReference
import gradlecheck.FetchPostMergeFailedTestName
Expand Down Expand Up @@ -49,7 +54,7 @@ void call(Map args = [:]) {
repoUrl: "https://github.com/opensearch-project/OpenSearch",
issueTitle: "[AUTOCUT] Gradle Check Flaky Test Report for ${failedTest}",
issueBodyFile: "${failedTest}.md",
label: 'autocut,>test-failure',
label: args.issueLabels,
issueEdit: true
)
}
Expand Down
Loading