8000 Add auto responder workflow (#350) · octokit/request-error.js@9b4bf3c · GitHub
[go: up one dir, main page]

Skip to content

Commit 9b4bf3c

Browse files
authored
Add auto responder workflow (#350)
feat: add immediate-response.yml auto responder workflow
1 parent 5172255 commit 9b4bf3c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Issue/PR response
2+
permissions:
3+
issues: write
4+
pull-requests: write
5+
on:
6+
issues:
7+
types:
8+
- opened
9+
pull_request:
10+
types:
11+
- opened
12+
jobs:
13+
respond-to-issue:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Determine issue or PR number
17+
id: extract
18+
run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
19+
20+
- name: Respond to issue or PR
21+
uses: peter-evans/create-or-update-comment@6534843181fc2aeb7f9f1cd3cd4a7b956cada2db
22+
with:
23+
issue-number: ${{ steps.extract.outputs.NUMBER }}
24+
body: >
25+
👋 Hi! Thank you for this contribution! Just to let you know, our GitHub SDK team does a round of issue and PR reviews twice a week, every Monday and Friday!
26+
We have a [process in place](https://github.com/octokit/.github/blob/main/community/prioritization_response.md#overview) for prioritizing and responding to your input.
27+
Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labled with `Status: Up for grabs`.
28+
You & others like you are the reason all of this works! So thank you & happy coding! 🚀

0 commit comments

Comments
 (0)
0