forked from ubiquity/ubiquibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into feat/cspell
- Loading branch information
Showing
86 changed files
with
4,939 additions
and
2,487 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
Validating CODEOWNERS rules …
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 +1 @@ | ||
|
||
* @0xcodercrane |
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,5 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Telegram Group Chat | ||
url: https://t.me/UbiquityDAO/29891 | ||
about: "Join us on Telegram!" | ||
- name: UbiquiBot Development Group Chat | ||
url: https://t.me/UbiquityDAO/31132 | ||
about: "Live chat with us on Telegram!" |
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,11 @@ | ||
<!-- RULES TO CONTRIBUTE TO UBIQUIBOT | ||
1. You must link the issue number e.g. "Resolves #1234" | ||
2. You must link proof that your code works from a test issue on your forked repo e.g. "Quality Assurance https://github.com/user/repo/issues/1#issuecomment-1" | ||
3. Please do not replace the keyword "Resolves" https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword | ||
--> | ||
|
||
Resolves # | ||
|
||
<!-- | ||
- You must link the issue number e.g. "Resolves #1234" | ||
- You must link the QA issue on your forked repo e.g. "QA for #1234" | ||
- Please do not replace the keyword "Resolves" https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword | ||
--> | ||
Quality Assurance: |
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,38 +1,6 @@ | ||
evm-network-id: 100 | ||
price-multiplier: 1.5 | ||
time-labels: | ||
- name: "Time: <1 Hour" | ||
weight: 0.125 | ||
value: 3600 | ||
- name: "Time: <2 Hours" | ||
weight: 0.25 | ||
value: 7200 | ||
- name: "Time: <4 Hours" | ||
weight: 0.5 | ||
value: 14400 | ||
- name: "Time: <1 Day" | ||
weight: 1 | ||
value: 86400 | ||
- name: "Time: <1 Week" | ||
weight: 2 | ||
value: 604800 | ||
priority-labels: | ||
- name: "Priority: 0 (Normal)" | ||
weight: 1 | ||
- name: "Priority: 1 (Medium)" | ||
weight: 2 | ||
- name: "Priority: 2 (High)" | ||
weight: 3 | ||
- name: "Priority: 3 (Urgent)" | ||
weight: 4 | ||
- name: "Priority: 4 (Emergency)" | ||
weight: 5 | ||
default-labels: | ||
- "Time: <1 Hour" | ||
- "Priority: 0 (Normal)" | ||
payment-permit-max-price: 1000 | ||
comment-incentives: true | ||
max-concurrent-bounties: 2 | ||
promotion-comment: "\n<h6>If you enjoy the DevPool experience, please follow <a href='https://github.com/ubiquity'>Ubiquity on GitHub</a> and star <a href='https://github.com/ubiquity/devpool-directory'>this repo</a> to show your support. It helps a lot!</h6>" | ||
register-wallet-with-verification: false | ||
assistive-pricing: true | ||
priceMultiplier: 1.5 | ||
# newContributorGreeting: | ||
# enabled: true | ||
# header: "Thank you for contributing to UbiquiBot! Please be sure to set your wallet address before completing your first bounty so that the automatic payout upon task completion will work for you." | ||
# helpMenu: true | ||
# footer: "###### Also please star this repository and [@ubiquity/devpool-directory](https://github.com/ubiquity/devpool-directory/) to show your support. It helps a lot!" |
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,37 @@ | ||
name: Deploy Log Web App to Cloudflare Worker | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Conventional Commits"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
deployments: write | ||
name: Deploy to Cloudflare Worker | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20.3.0" | ||
|
||
- name: Build TypeScript | ||
run: cd ./log-app && npm install && npm run build | ||
|
||
- name: Publish to Cloudflare Pages | ||
uses: cloudflare/pages-action@v1 | ||
with: | ||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | ||
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }} | ||
directory: ${{ secrets.LOGGER_WEB_APP_DIRECTORY }} | ||
# Enable Wrangler v3 | ||
wranglerVersion: "3" |
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,2 @@ | ||
# Ignore JavaScript files | ||
*.js |
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,9 @@ | ||
import { Env } from "./types/global"; | ||
|
||
export default { | ||
async fetch(request: Request, env: Env) { | ||
// Otherwise, serve the static assets. | ||
// Without this, the Worker will error and no assets will be served. | ||
return env.ASSETS.fetch(request); | ||
}, | ||
}; |
Oops, something went wrong.