Add workflow to sweep for stale issues #16586
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: Copy labels from linked issues | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, reopened, ready_for_review, review_requested] | |
| jobs: | |
| copy-labels: | |
| runs-on: ubuntu-latest | |
| name: Copy labels from linked issues | |
| steps: | |
| - name: copy-labels | |
| uses: michalvankodev/[email protected] | |
| with: | |
| custom-keywords: | | |
| in | |
| references | |
| reference | |
| to | |
| labels-to-exclude: | | |
| great writeup | |
| good first issue | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |