Skip to content

Commit 2c99d97

Browse files
authoredOct 3, 2023
[maint]: Updated immediate response workflows via automation (#352)
Updates for workflows
1 parent 2924cad commit 2c99d97

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎.github/workflows/immediate-response.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,19 @@ on:
1111
- opened
1212
jobs:
1313
respond-to-issue:
14+
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
1415
runs-on: ubuntu-latest
1516
steps:
1617
- name: Determine issue or PR number
1718
id: extract
1819
run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT"
1920

2021
- name: Respond to issue or PR
21-
uses: peter-evans/create-or-update-comment@ddff993e3c91296d410ace8836568b0e4aeada34
22+
uses: peter-evans/create-or-update-comment@v3
2223
with:
2324
issue-number: ${{ steps.extract.outputs.NUMBER }}
2425
body: >
2526
👋 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!
2627
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.
2728
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! 🚀
29+
You & others like you are the reason all of this works! So thank you & happy coding! 🚀

0 commit comments

Comments
 (0)
Please sign in to comment.