Skip to content

Add Cloud Run Id worker sample #194

Add Cloud Run Id worker sample

Add Cloud Run Id worker sample #194

name: Check for CODEOWNERS

Check warning on line 1 in temporalio/public-actions/.github/workflows/require-codeowners.yml

View workflow run for this annotation

GitHub Actions / Check for CODEOWNERS

Workflow execution policy warning (evaluate mode)

On November 2, 2026, GitHub will restrict `pull_request_target` on public repositories by default. To continue allowing the event trigger, configure an Actions policy. Learn more: https://gh.io/securely-using-pull_request_target#default-policy-for-pull_request_target
on:
# Runs on a pull request for the main branch (we use
# 'pull_request_target' instead of 'pull_request' so
# it also works for forks, since the secrets would
# otherwise not be available for forks).
pull_request_target:
types:
# Default events
- opened
- synchronize
- reopened
# But we also want to make sure a potential
# exception request pull request is getting
# closed if any was open
- closed
branches:
- main
- master
# Runs on a merge group build
merge_group:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: false
jobs:
check:
name: Check for CODEOWNERS
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.draft == false && !endsWith(github.actor, '[bot]') }}
steps:
- name: Checkout branch
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
ref: ${{ github.event.pull_request.head.sha }}
# Find doesn't return non-0 for no results, but grep does.
- name: Check for CODEOWNERS
run: |
find . -iname "CODEOWNERS" | grep .