Skip to content

[air] Add rank-partitioned container support #189

[air] Add rank-partitioned container support

[air] Add rank-partitioned container support #189

Workflow file for this run

name: PR Labeler

Check warning on line 1 in .github/workflows/labeler.yml

View workflow run for this annotation

GitHub Actions / PR Labeler

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
# Applies labels to PRs based on the files they touch, using the glob->label
# mapping in .github/labeler.yml.
#
# WARNING:
# This workflow uses pull_request_target so it can label PRs from forks (the
# default GITHUB_TOKEN only has write access under pull_request_target, not
# pull_request). It does NOT check out or execute any code from the PR: the
# labeler action reads the changed-file list and the config from the base
# branch via the API only. Do not add a checkout of the PR ref here.
on:
pull_request_target:
types: [opened, reopened, synchronize]
branches:
- main
jobs:
label:
runs-on:
group: databricks-deco-testing-runner-group
labels: ubuntu-latest-deco
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@bf12e9b00b37c5c0ca2b87b79b2daf7891dbda13 # v7.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Only add labels; never remove labels that were applied manually or by other automation.
sync-labels: false