Skip to content

Add more process attributes to the entity #2655 (#2656) #448

Add more process attributes to the entity #2655 (#2656)

Add more process attributes to the entity #2655 (#2656) #448

name: 'Generate registry area labels'
on:
push:
branches:
- main
paths:
- model/**
- ./.github/workflows/generate-registry-area-labels.yml
- ./internal/tools/scripts/generate-registry-area-labels.sh
workflow_dispatch:
permissions:
contents: read
jobs:
generate-component-labels:
permissions:
issues: write # required for labeling PRs
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'open-telemetry' }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
# areas.txt is generated by the Make target generate-gh-issue-templates
- name: Generate registry area labels
run: |
make generate-gh-issue-templates
./internal/tools/scripts/generate-registry-area-labels.sh ./internal/tools/bin/areas.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}