Skip to content

docs: initialize blueprint development structure #55

docs: initialize blueprint development structure

docs: initialize blueprint development structure #55

Workflow file for this run

name: Auto Label PRs
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
pull-requests: write
jobs:
label:
name: Auto-label PR
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Apply labels based on file paths
uses: actions/labeler@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
sync-labels: true
- name: Create labeling summary
run: |
echo "## 🏷️ Auto-labeling Complete" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "Labels have been automatically applied based on changed files." >> $GITHUB_STEP_SUMMARY