|
11 | 11 | - opened
|
12 | 12 | jobs:
|
13 | 13 | respond-to-issue:
|
14 |
| - if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }} |
| 14 | + if: |
| 15 | + ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && |
| 16 | + github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }} |
15 | 17 | runs-on: ubuntu-latest
|
16 | 18 | steps:
|
17 | 19 | - name: Determine issue or PR number
|
18 | 20 | id: extract
|
19 |
| - run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" |
| 21 | + run: echo "NUMBER=${{ github.event.issue.number || |
| 22 | + github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" |
20 | 23 |
|
21 | 24 | - name: Respond to issue or PR
|
22 | 25 | uses: peter-evans/create-or-update-comment@v4
|
23 | 26 | with:
|
24 | 27 | issue-number: ${{ steps.extract.outputs.NUMBER }}
|
25 | 28 | body: >
|
26 |
| - 👋 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! |
27 |
| - 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. |
28 |
| - 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`. |
29 |
| - You & others like you are the reason all of this works! So thank you & happy coding! 🚀 |
| 29 | + 👋 Hi! Thank you for this contribution! Just to let you know, our |
| 30 | + GitHub SDK team does a round of issue and PR reviews twice a week, |
| 31 | + every Monday and Friday! We have a [process in |
| 32 | + place](https://github.com/octokit/.github/blob/main/community/prioritization_response.md#overview) |
| 33 | + for prioritizing and responding to your input. Because you are a |
| 34 | + part of this community please feel free to comment, add to, or pick |
| 35 | + up any issues/PRs that are labeled with `Status: Up for grabs`. You |
| 36 | + & others like you are the reason all of this works! So thank you & |
| 37 | + happy coding! 🚀 |
0 commit comments