build(deps-dev): bump rollup from 1.30.1 to 2.79.2 in /tools/node-lint-md-cli-rollup #11
Workflow file for this run
This file contains 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: Comment on issues and PRs when labelled stalled | |
on: | |
issues: | |
types: [labeled] | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
staleComment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Post comment | |
if: github.event.label.name == 'stalled' | |
env: | |
COMMENTS_URL: ${{ github.event.issue.comments_url || github.event.pull_request.comments_url }} | |
run: | | |
curl -X POST $COMMENTS_URL \ | |
-H "Content-Type: application/json" \ | |
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
--data '{ "body": "This issue/PR was marked as stalled, it will be automatically closed in 30 days. If it should remain open, please leave a comment explaining why it should remain open." }' |