Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ updates:
day: wednesday
time: "00:00"

# Only accept updates that have been published for at least 3 days
# Only accept updates that have been published for at least a week
cooldown:
default-days: 3
default-days: 7

# Create a grouped PR for minor/patch updates with majors getting dedicated PRs
groups:
Expand All @@ -32,9 +32,9 @@ updates:
day: wednesday
time: "00:00"

# Only accept updates that have been published for at least 3 days
# Only accept updates that have been published for at least a week
cooldown:
default-days: 3
default-days: 7

# Allow usage of any registry including npm-github w/ auth as above
registries: "*"
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@ on:
push:
pull_request:

permissions:
contents: read

jobs:
types:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
Expand All @@ -36,6 +41,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
Expand All @@ -61,6 +68,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
Expand All @@ -79,3 +88,18 @@ jobs:

- name: Build extension
run: pnpm build

zizmor:
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Run zizmor 🌈
uses: zizmorcore/zizmor-action@b1d7e1fb5de872772f31590499237e7cce841e8e # v0.5.3
5 changes: 5 additions & 0 deletions .github/workflows/update-pnpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@ on:
# Run once per week on Monday at midnight, before Dependabot runs on Wednesday
- cron: "0 0 * * 1"

permissions:
contents: read

jobs:
update:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
Expand Down