-
Notifications
You must be signed in to change notification settings - Fork 402
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
3,003 additions
and
1,098 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,40 @@ | ||
labels: | ||
- name: invalid | ||
labeled: | ||
issue: | ||
body: Please follow the issue templates. | ||
action: close | ||
pr: | ||
body: | | ||
Thank you @{{ pull_request.user.login }} for raising a PR. Please follow the pull request templates. | ||
PR compliance is complaining because of the PR description, some things needs to be fixed properly, if you don't know how, try this: | ||
- Read the error carefully or read the <a href="https://github.com/Dun-sin/whisper/blob/main/CONTRIBUTING.md">Contributing.md file</a> | ||
- Checkout past merged Pull requests to see how they were done for it to be merged | ||
> Note: you can edit your PR message, this PR won't be merged if the error isn't gone and you have a week max to fix it before the PR gets closed without being merged | ||
- name: wontfix | ||
labeled: | ||
issue: | ||
body: This will not be worked on but we appreciate your contribution. | ||
action: close | ||
unlabeled: | ||
issue: | ||
body: This has become active again. | ||
action: open | ||
- name: duplicate | ||
labeled: | ||
issue: | ||
body: This issue already exists. | ||
action: close | ||
- name: '🚦 status: awaiting approval' | ||
labeled: | ||
issue: | ||
body: | | ||
This issue is waiting to be approved so it's locked until approved | ||
Thank you @{{ issue.user.login }} for creating an issue, while you wait for a response, consider reading the <a href="https://github.com/Dun-sin/whisper/blob/main/CONTRIBUTING.md">Contributing.md file</a>, Thank you! Welcome to the community | ||
locking: lock | ||
- name: '🏁 status: ready for dev' | ||
labeled: | ||
issue: | ||
body: | | ||
This issue is ready for dev and assigned to anyone who properly asks | ||
locking: unlock |
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,37 @@ | ||
name: Label Commenter | ||
|
||
on: | ||
issues: | ||
types: | ||
- labeled | ||
- unlabeled | ||
pull_request_target: | ||
types: | ||
- labeled | ||
- unlabeled | ||
discussion: | ||
types: | ||
- labeled | ||
- unlabeled | ||
|
||
permissions: | ||
contents: read | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-20.04 | ||
timeout-minutes: 1 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
ref: main | ||
|
||
- name: Label Commenter | ||
uses: peaceiris/actions-label-commenter@b9f3f5d91e1f6ea0fd28c45cee43e0b0a687a272 | ||
env: | ||
RUNNER_DEBUG: 1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
config_file: .github/workflows/label-commenter-config.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ yarn-error.log* | |
|
||
# local env files | ||
.env*.local | ||
.env | ||
|
||
# vercel | ||
.vercel | ||
|
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,36 @@ | ||
#!/usr/bin/env sh | ||
if [ -z "$husky_skip_init" ]; then | ||
debug () { | ||
if [ "$HUSKY_DEBUG" = "1" ]; then | ||
echo "husky (debug) - $1" | ||
fi | ||
} | ||
|
||
readonly hook_name="$(basename -- "$0")" | ||
debug "starting $hook_name..." | ||
|
||
if [ "$HUSKY" = "0" ]; then | ||
debug "HUSKY env variable is set to 0, skipping hook" | ||
exit 0 | ||
fi | ||
|
||
if [ -f ~/.huskyrc ]; then | ||
debug "sourcing ~/.huskyrc" | ||
. ~/.huskyrc | ||
fi | ||
|
||
readonly husky_skip_init=1 | ||
export husky_skip_init | ||
sh -e "$0" "$@" | ||
exitCode="$?" | ||
|
||
if [ $exitCode != 0 ]; then | ||
echo "husky - $hook_name hook exited with code $exitCode (error)" | ||
fi | ||
|
||
if [ $exitCode = 127 ]; then | ||
echo "husky - command not found in PATH=$PATH" | ||
fi | ||
|
||
exit $exitCode | ||
fi |
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,6 +1,15 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
webpack(config, options) { | ||
config.module.rules.push({ | ||
test: /\.mp3$/, | ||
use: { | ||
loader: 'url-loader', | ||
}, | ||
}); | ||
return config; | ||
}, | ||
}; | ||
|
||
module.exports = nextConfig; |
Oops, something went wrong.