Skip to content

Commit 9ff5be6

Browse files
authored
Update and rename auto-response.yml to immediate-response.yml
Signed-off-by: 0x5BFA <[email protected]>
1 parent b138d4e commit 9ff5be6

File tree

1 file changed

+7
-21
lines changed

1 file changed

+7
-21
lines changed
Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,29 @@
1-
# This comes from https://github.com/octokit/.github/tree/main/.github/templates
2-
# Please edit the workflow in there too when you make changes to this workflow.
3-
41
name: Issue/PR response
5-
62
permissions:
73
issues: write
84
pull-requests: write
9-
105
on:
116
issues:
12-
types: [opened]
7+
types:
8+
- opened
139
pull_request_target:
14-
types: [opened]
15-
10+
types:
11+
- opened
1612
jobs:
17-
18-
respond:
13+
respond-to-issue:
1914
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
2015
runs-on: ubuntu-latest
21-
2216
steps:
2317
- name: Determine issue or PR number
2418
id: extract
2519
run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
2620

27-
- name: Respond to the issue or PR
21+
- name: Respond to issue or PR
2822
uses: peter-evans/create-or-update-comment@v4
2923
with:
3024
issue-number: ${{ steps.extract.outputs.NUMBER }}
31-
body: |
25+
body: >
3226
👋 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!
3327
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.
3428
Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labeled with `Status: Up for grabs`.
3529
You & others like you are the reason all of this works! So thank you & happy coding! 🚀
36-
37-
- name: Add issue to project
38-
uses: actions/add-to-project@v1
39-
with:
40-
project-url: https://github.com/orgs/octokit/projects/10
41-
github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }}
42-
labeled: "Status: Stale"
43-
label-operator: NOT

0 commit comments

Comments
 (0)