Compare commits
6 commits
7facef9065
...
ddd24b63bf
Author | SHA1 | Date | |
---|---|---|---|
ddd24b63bf |
|||
4c7bff1b31 |
|||
c9a1601962 |
|||
8e4a694b24 |
|||
fa96cf8941 | |||
698370fd9b |
4 changed files with 47 additions and 6 deletions
|
@ -7,3 +7,8 @@ backend:
|
||||||
- changed-files:
|
- changed-files:
|
||||||
- any-glob-to-any-file:
|
- any-glob-to-any-file:
|
||||||
- "backend/**"
|
- "backend/**"
|
||||||
|
|
||||||
|
ci:
|
||||||
|
- changed-files:
|
||||||
|
- any-glob-to-any-file:
|
||||||
|
- ".gitea/**"
|
||||||
|
|
19
.gitea/size.yml
Normal file
19
.gitea/size.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
buckets:
|
||||||
|
- maxSize: 80
|
||||||
|
label: size/small
|
||||||
|
comment: null
|
||||||
|
- maxSize: 200
|
||||||
|
label: size/medium
|
||||||
|
comment: null
|
||||||
|
- maxSize: 2000
|
||||||
|
label: size/large
|
||||||
|
comment: >
|
||||||
|
👮♀️⚠️ This is a friendly reminder that the diff size of this PR is bigger than
|
||||||
|
200 lines we aim for. Please consider splitting this PR into more digestible pieces!
|
||||||
|
- maxSize: Infinity
|
||||||
|
label: size/huge
|
||||||
|
comment: >
|
||||||
|
👮♀️🛑 This PR's diff size is quite huge.
|
||||||
|
Hopefully you know what you're doing.
|
||||||
|
If you did not commit a lot of autogenerated files intentionally,
|
||||||
|
there are few good reasons for this.
|
17
.gitea/workflows/size.yml
Normal file
17
.gitea/workflows/size.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Label PRs based on size
|
||||||
|
|
||||||
|
on: [pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add_pr_size_label:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Check PR size
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Check out code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Label and comment PR
|
||||||
|
uses: boschresearch/pr-size-labeler@v5.0.1
|
||||||
|
with:
|
||||||
|
bucketConfigFile: ".gitea/size.yml"
|
|
@ -39,7 +39,7 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("com.stripe:stripe-java:29.1.0")
|
implementation("com.stripe:stripe-java:29.2.0")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-web")
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
||||||
compileOnly("org.projectlombok:lombok")
|
compileOnly("org.projectlombok:lombok")
|
||||||
|
@ -47,13 +47,13 @@ dependencies {
|
||||||
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-security")
|
implementation("org.springframework.boot:spring-boot-starter-security")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.4.5")
|
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.5.0")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.4.5")
|
implementation("org.springframework.boot:spring-boot-starter-oauth2-client:3.5.0")
|
||||||
runtimeOnly("org.postgresql:postgresql")
|
runtimeOnly("org.postgresql:postgresql")
|
||||||
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.8")
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.8")
|
||||||
implementation("io.jsonwebtoken:jjwt-api:0.11.5")
|
implementation("io.jsonwebtoken:jjwt-api:0.12.6")
|
||||||
runtimeOnly("io.jsonwebtoken:jjwt-impl:0.11.5")
|
runtimeOnly("io.jsonwebtoken:jjwt-impl:0.12.6")
|
||||||
runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.11.5")
|
runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.12.6")
|
||||||
implementation("org.springframework.boot:spring-boot-starter-mail")
|
implementation("org.springframework.boot:spring-boot-starter-mail")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue