refactor: convert SpanGraph to functional component #1460
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Waiting for Author' | |
| on: | |
| pull_request_target: | |
| types: [synchronize] | |
| issue_comment: | |
| types: [created] | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| triage: | |
| if: ${{ github.event.issue.pull_request || github.event.pull_request }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Download Waiting for Author script | |
| run: | | |
| curl -fsSL -o /tmp/waiting-for-author.js \ | |
| https://raw.githubusercontent.com/jaegertracing/jaeger/refs/heads/main/.github/scripts/waiting-for-author.js | |
| - name: Manage Waiting for Author Label | |
| uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 | |
| with: | |
| script: | | |
| const script = require('/tmp/waiting-for-author.js') | |
| await script({github, context, core}) |