build(deps-dev): bump the dev-dependencies group across 1 directory with 42 updates #1719
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: Close stale PR | |
| on: | |
| pull_request: | |
| types: labeled | |
| jobs: | |
| close-pr: | |
| if: github.event.label.name == 'stale-pr' | |
| permissions: | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: gh pr close "$NUMBER" --comment "$COMMENT" | |
| env: | |
| GH_REPO: ${{ github.repository }} | |
| NUMBER: ${{ github.event.number }} | |
| COMMENT: > | |
| Closing this PR due to staleness! If there are new updates, please reopen the PR. |