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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
- main
- releases/*

permissions:
contents: read
actions: write

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Is it the official main branch, or an official release branches?
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/conventions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: Conventions
on:
workflow_call:

permissions:
contents: read
actions: read

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
required: false
description: The Vercel token. Required if 'publish_target' is set.

permissions:
contents: read
actions: read

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/nightly-throughput-stress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ on:
default: 360
type: number

permissions:
contents: read
actions: write

env:
# Workflow configuration
TEST_DURATION: ${{ inputs.duration || vars.NIGHTLY_TEST_DURATION || '5h' }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- cron: '00 08 * * *'
# (1 AM PST)

permissions:
contents: read
actions: write

jobs:
nightly:
uses: ./.github/workflows/stress.yml
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/omes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- main
- 'releases/*'

permissions:
contents: read
packages: write

jobs:
omes-image-build:
uses: temporalio/omes/.github/workflows/docker-images.yml@main
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
- 'releases/*'

permissions:
contents: read
actions: write

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Is it the official main branch, or an official release branches?
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/stress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ on:
required: true
type: boolean

permissions:
contents: read
actions: write

env:
TEMPORAL_TESTING_LOG_DIR: /tmp/worker-logs
TEMPORAL_TESTING_MEM_LOG_DIR: /tmp/worker-mem-logs
Expand Down