-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into webhook_start
- Loading branch information
Showing
208 changed files
with
1,124 additions
and
404 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,35 @@ | ||
changelog: | ||
categories: | ||
- title: 🚨 Breaking Changes | ||
description: Changes that break existing functionality | ||
labels: | ||
- breaking | ||
- title: ✨ New Features | ||
description: New features and enhancements | ||
labels: | ||
- enhancement | ||
- title: 🐛 Bug Fixes | ||
description: Bug fixes and patches | ||
labels: | ||
- fix | ||
- bug | ||
- title: 📝 Documentation Updates | ||
description: Changes to documentation | ||
labels: | ||
- documentation | ||
- title: 🛠 Maintenance Tasks | ||
description: Maintenance tasks and housekeeping | ||
labels: | ||
- chore | ||
- refactor | ||
- style | ||
- performance | ||
- build | ||
- title: ✅ Tests | ||
description: Changes to tests | ||
labels: | ||
- test | ||
- title: Others | ||
description: Other changes | ||
labels: | ||
- "*" |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Warning, do not check out untrusted code with | ||
# the pull_request_target event. | ||
name: Label PRs with Conventional Commits | ||
on: | ||
pull_request_target: | ||
types: [ opened, edited , reopened] | ||
|
||
jobs: | ||
validate-pr: | ||
name: Validate PR | ||
runs-on: ubuntu-latest | ||
outputs: | ||
validate_output: ${{ steps.validate.outputs }} | ||
steps: | ||
- name: Validate the pull request | ||
id: validate | ||
uses: Namchee/[email protected] | ||
with: | ||
access_token: ${{ secrets.GITHUB_TOKEN }} | ||
verbose: true | ||
issue: false | ||
|
||
label: | ||
needs: validate-pr | ||
name: Label PR | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.pull_request.user.type != 'Bot' && needs.validate-pr.outputs.validate_output == 'true' }} | ||
steps: | ||
- uses: bcoe/conventional-release-labels@v1 | ||
with: | ||
type_labels: '{"feat": "enhancement","fix": "bug","docs": "documentation","style": "style","refactor": "refactor","perf": "performance","test": "test","chore": "chore","build": "build"}' |
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ on: | |
env: | ||
NODE_VERSION: "21" | ||
|
||
|
||
jobs: | ||
test-docs-build: | ||
name: Test Docs Build | ||
|
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 |
---|---|---|
|
@@ -51,5 +51,3 @@ jobs: | |
run: | | ||
cd src/frontend | ||
npm run check-format | ||
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
Oops, something went wrong.