-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Gradle Build Scan 활성화 및 슬랙 전송 워크플로 추가 (#37)
* chore: 빌드 스캔 활성화 * chore: 워크플로 테스트 * chore: CI 환경변수 테스트 제거 * chore: 슬랙 전송 워크플로 작성 * chore: 슬랙 전송 스텝을 빌드 잡으로 통합 * chore: 테스트 트리거 및 문자열 제거
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
plugins { | ||
id "com.gradle.enterprise" version "3.15.1" | ||
} | ||
|
||
gradleEnterprise { | ||
buildScan { | ||
publishAlwaysIf(System.getenv("CI") != null) | ||
termsOfServiceUrl = "https://gradle.com/terms-of-service" | ||
termsOfServiceAgree = "yes" | ||
} | ||
} | ||
|
||
rootProject.name = 'tenminute' |