-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/refactor/develop' into adapt-t…
…o-unibuy
- Loading branch information
Showing
146 changed files
with
2,765 additions
and
2,066 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: v1 | ||
|
||
labels: | ||
- label: 'enhancement' | ||
sync: true | ||
matcher: | ||
title: '^feat:.*' | ||
- label: 'document' | ||
sync: true | ||
matcher: | ||
title: '^docs:.*' | ||
- label: 'bug' | ||
sync: true | ||
matcher: | ||
title: '^fix:.*' | ||
- label: 'ospp-2024' | ||
sync: true | ||
matcher: | ||
baseBranch: '^ospp-2024/.*' | ||
- label: 'refactor-main' | ||
sync: true | ||
matcher: | ||
baseBranch: 'refactor/develop' |
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,19 @@ | ||
name: Pull Request Auto Labeler | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, edited] | ||
|
||
permissions: | ||
# Setting up permissions in the workflow to limit the scope of what it can do. Optional! | ||
contents: read # the config file | ||
pull-requests: write # for labeling pull requests (on: pull_request_target or on: pull_request) | ||
|
||
jobs: | ||
label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: fuxingloh/multi-labeler@v4 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} # optional, default to '${{ github.token }}' | ||
config-path: .github/auto-labeler.yml # optional, default to '.github/labeler.yml' |
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,7 +1,7 @@ | ||
# prod mode, used by the "build:prod" script | ||
|
||
NODE_ENV=production | ||
VITE_CDN_DOMAIN=https://npm.onmicrosoft.cn | ||
VITE_CDN_DOMAIN=https://unpkg.com | ||
VITE_LOCAL_IMPORT_MAPS=false | ||
VITE_LOCAL_BUNDLE_DEPS=false | ||
#VITE_ORIGIN= |
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
Oops, something went wrong.