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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
branches:
- develop

permissions:
contents: read

jobs:
test:
name: Test
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/deploy-check.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Check Deploy

on:
pull_request_target:
pull_request:
types:
- opened
- reopened
Expand All @@ -10,6 +10,9 @@ on:
branches:
- main

permissions:
contents: read

jobs:
check:
if: github.head_ref != 'develop'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:
- 'package.json'
- 'scripts/**'

permissions:
contents: write

jobs:
pack:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -99,7 +102,8 @@ jobs:

- run: npm install -g pnpm
- run: pnpm init
- run: pnpm i --save-dev ./supabase-1.28.0.tgz
# https://github.com/pnpm/pnpm/issues/9124#issuecomment-2663021284
- run: pnpm i --save-dev ./supabase-1.28.0.tgz --allow-build=supabase
- run: pnpm supabase --version

bun:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/mirror-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
required: true
type: string

permissions:
contents: read

jobs:
mirror:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ on:
- submitted
workflow_dispatch:

permissions:
contents: read

jobs:
setup:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pg-prove.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Publish pg_prove
on:
workflow_dispatch:

permissions:
contents: read

jobs:
settings:
runs-on: ubuntu-latest
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/publish-migra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Publish migra
on:
workflow_dispatch:

permissions:
contents: read

jobs:
settings:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -70,9 +73,9 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Merge multi-arch manifests
run: |
docker buildx imagetools create -t ${{ needs.settings.outputs.image_tag }} \
${{ needs.settings.outputs.image_tag }}_amd64 \
${{ needs.settings.outputs.image_tag }}_arm64
docker buildx imagetools create -t "${{ needs.settings.outputs.image_tag }}" \
"${{ needs.settings.outputs.image_tag }}_amd64" \
"${{ needs.settings.outputs.image_tag }}_arm64"

publish:
needs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- develop
workflow_dispatch:

permissions:
contents: write

jobs:
release:
name: semantic-release
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- main
workflow_call:

permissions:
contents: write
packages: write

jobs:
settings:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tag-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ on:
required: true
type: string

permissions:
contents: read

jobs:
tag:
name: Move latest tag
Expand Down