Skip to content

[github-actions] Retry transient workflow failures (#175) #616

[github-actions] Retry transient workflow failures (#175)

[github-actions] Retry transient workflow failures (#175) #616

Workflow file for this run

name: Pull Request Label Sync
on:
pull_request_target:
types: [opened, reopened, synchronize]
pull_request:
types: [opened, reopened, synchronize]
workflow_call:
inputs:
copy_issue_labels:
type: boolean
default: true
description: "Copy labels from linked issue"
permissions:
contents: read
issues: read
pull-requests: write
jobs:
copy-issue-labels:
if: inputs.copy_issue_labels == true || github.event_name != 'workflow_call'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Copy labels from issue to PR
uses: ./.github/actions/label-sync/copy-linked-issue-labels