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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ updates:

- package-ecosystem: npm
cooldown:
default-days: 1
default-days: 7
directory: /
schedule:
interval: daily
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cloudflare-web-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
if [ "${{ github.event_name }}" = "pull_request" ]; then
echo "alias=pr-${{ github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
else
branch="${{ github.ref_name }}"
branch="${GITHUB_REF_NAME}"
alias="$(echo "$branch" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/-/g' | sed 's/-\+/-/g' | sed 's/^-\|-$//g')"
echo "alias=${alias}" >> "$GITHUB_OUTPUT"
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [dev]
tags:
- 'sable/v*'
- 'v*'
pull_request:
paths:
- 'Dockerfile'
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ on:
pull_request:
push:
branches: [dev]
merge_group:

jobs:
format:
name: Format check
runs-on: ubuntu-latest
if: github.head_ref != 'release'
permissions:
contents: read
steps:
Expand All @@ -26,6 +28,7 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
if: github.head_ref != 'release'
permissions:
contents: read
steps:
Expand All @@ -43,6 +46,7 @@ jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
if: github.head_ref != 'release'
permissions:
contents: read
steps:
Expand All @@ -60,6 +64,7 @@ jobs:
knip:
name: Knip
runs-on: ubuntu-latest
if: github.head_ref != 'release'
permissions:
contents: read
steps:
Expand All @@ -73,3 +78,20 @@ jobs:

- name: Run Knip
run: pnpm run knip

build:
name: Build
runs-on: ubuntu-latest
if: github.head_ref != 'release'
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Setup app and build
uses: ./.github/actions/setup
with:
build: 'true'
2 changes: 2 additions & 0 deletions .github/workflows/require-changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ name: Require Changeset
on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
merge_group:
branches: [dev]

permissions: {}

jobs:
require-changeset:
runs-on: ubuntu-latest
if: github.head_ref != 'release' && github.event_name != 'merge_group'
permissions:
contents: read
pull-requests: write
Expand Down
Loading