47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
name: PR Label Apply
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["PR Label Analysis"]
|
|
types:
|
|
- completed
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
apply-labels:
|
|
name: Apply labels to PR
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
|
|
- name: Download PR metadata artifact
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
run-id: ${{ github.event.workflow_run.id }}
|
|
pattern: pr-metadata-*
|
|
merge-multiple: false
|
|
id: download-artifact
|
|
|
|
- name: Read PR number
|
|
id: pr-number
|
|
run: |
|
|
PR_NUMBER=$(cat "pr-number.txt")
|
|
echo "number=${PR_NUMBER}" >> $GITHUB_OUTPUT
|
|
echo "PR Number: ${PR_NUMBER}"
|
|
|
|
- name: Apply labels using labeler
|
|
uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6
|
|
with:
|
|
pr-number: ${{ steps.pr-number.outputs.number }}
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
configuration-path: .github/labeler.yml
|
|
sync-labels: true |