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
5 changes: 4 additions & 1 deletion .github/workflows/build-catalog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Build Catalog

on: [push]

permissions:
contents: read

jobs:
build-catalog:
runs-on: ubuntu-latest
Expand All @@ -16,4 +19,4 @@ jobs:
- run: npm ci
- run: npm run build:catalog
env:
WIREIT_FAILURES: continue
WIREIT_FAILURES: continue
3 changes: 3 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: commitlint

on: [pull_request]

permissions:
contents: read

jobs:
commitlint:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ name: Deploy to Firebase Hosting on release and manual
- published
workflow_dispatch:
# allows triggering from the gihub UI

permissions:
contents: read

jobs:
build_and_deploy:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ name: Deploy to Firebase Hosting on PR
on:
pull_request:
types: [ labeled ]

permissions:
contents: read
pull-requests: write

jobs:
build_and_preview:
if: github.event.label.name == 'preview-catalog' && github.event.pull_request.head.repo.full_name == github.repository
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
workflow_dispatch:
# allows triggering from the github UI

permissions:
contents: write

jobs:
check_for_changes:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
tags:
- 'v*'

permissions:
contents: read

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

on: [push]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/update-docs-on-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
branches: main
workflow_dispatch:
# allows triggering from the github UI

permissions:
contents: write
pull-requests: write

jobs:
check-for-doc-changes:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/update-size-on-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
branches: main
workflow_dispatch:
# allows triggering from the github UI

permissions:
contents: write
pull-requests: write

jobs:
check-for-doc-changes:
runs-on: ubuntu-latest
Expand Down
Loading