Skip to content

Remove beta tag from Hyperdrive in Python Workers #8895

Remove beta tag from Hyperdrive in Python Workers

Remove beta tag from Hyperdrive in Python Workers #8895

Workflow file for this run

name: PR - Label

Check warning on line 1 in .github/workflows/pr-label-assign.yml

View workflow run for this annotation

GitHub Actions / PR - Label

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
# **What it does**: Labels PRs with size and associated products.
# **Why we have it**: Easier scanning of repo PRs && backend reporting on our team's work.
# **Who does it impact**: PCX team
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target
on:
pull_request_target:
types: [opened, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
label_products:
name: Label products
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6
continue-on-error: true
label_size:
name: Label size
permissions:
pull-requests: write
contents: read
issues: write
runs-on: ubuntu-latest
steps:
- uses: codelytv/pr-size-labeler@4ec67706cd878fbc1c8db0a5dcd28b6bb412e85a # v1
continue-on-error: true