Skip to content

Adding Tab Opening Rate Limit #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:

- name: "Build"
run: |
npm install
npm run build

#- name: "Upload to Actions"
# uses: actions/upload-artifact@v4
# with:
# name: artifacts
# path: web-ext-artifacts/
- name: "Upload to Actions"
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v4
with:
name: artifacts
path: web-ext-artifacts/

- name: "Upload to Release"
if: ${{ github.event_name == 'release' }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
with:
node-version: 22

- name: "Install"
run: |
npm install

- name: "Parse Issue"
id: issue
uses: cssnr/parse-issue-form-action@master
Expand All @@ -37,10 +41,6 @@ jobs:
echo Details: '${{ steps.issue.outputs.details }}'
echo Support Information: '${{ steps.issue.outputs.support_information }}'

- name: "Install"
run: |
npm install

- name: "Process Issue"
env:
URL: ${{ steps.issue.outputs.site_link }}
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ !contains(github.event.head_commit.message, '#notest') }}
permissions:
contents: write
pull-requests: write

steps:
- name: "Checkout"
Expand Down Expand Up @@ -55,8 +58,8 @@ jobs:
pass: ${{ secrets.RSYNC_PASS }}
port: ${{ secrets.RSYNC_PORT }}
webhost: "https://artifacts.hosted-domains.com"
webhook: ${{ secrets.DISCORD_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}
#webhook: ${{ secrets.DISCORD_WEBHOOK }}
#token: ${{ secrets.GITHUB_TOKEN }}

- name: "Schedule Failure Notification"
uses: sarisia/actions-status-discord@v1
Expand Down
11 changes: 10 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# IDE
.idea/
.vscode/

# Tools
.ruff_cache/
.mypy_cache/
.pytest_cache/

# Build
dist/
node_modules/
package-lock.json

# Files
*.html
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ for new features. For any issues, bugs or concerns; please [Open an Issue](https

### Known Issues

See the [Support](#Support) to let us know about issues...
See the [Support](#Support) section for ways to inform us about issues...

For more information see the [FAQ](https://link-extractor.cssnr.com/faq/).

Expand Down
Loading