Compare commits
4 commits
e9a89b14cd
...
7802a7f869
Author | SHA1 | Date | |
---|---|---|---|
7802a7f869 |
|||
684c25b562 |
|||
780a360f03 |
|||
186a865231 |
4 changed files with 591 additions and 292 deletions
9
.gitea/labeler.yml
Normal file
9
.gitea/labeler.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
frontend:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- "frontend/**"
|
||||
|
||||
backend:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file:
|
||||
- "backend/**"
|
14
.gitea/workflows/labeler.yml
Normal file
14
.gitea/workflows/labeler.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: "Pull Request Labeler"
|
||||
on:
|
||||
pull_request_target:
|
||||
|
||||
jobs:
|
||||
labeler:
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/labeler@v5
|
||||
with:
|
||||
configuration-path: ".gitea/labeler.yml"
|
File diff suppressed because it is too large
Load diff
|
@ -39,8 +39,8 @@
|
|||
"tslib": "^2.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "^19.0.0",
|
||||
"@angular/cli": "^19.2.5",
|
||||
"@angular-devkit/build-angular": "^20.0.0",
|
||||
"@angular/cli": "^20.0.0",
|
||||
"@angular/compiler-cli": "^19.0.0",
|
||||
"@types/jasmine": "~5.1.0",
|
||||
"angular-eslint": "19.7.0",
|
||||
|
|
Reference in a new issue