1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-07-05 21:21:14 +03:00

Merge pull request #13 from arduino/comment-on-comment-trigger

Provide immediate response to comment trigger
This commit is contained in:
per1234
2021-04-26 01:36:58 -07:00
committed by GitHub

View File

@ -31,8 +31,23 @@ jobs:
) )
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Dummy step to make job valid - name: Comment on comment trigger to provide feedback
run: "" if: github.event_name == 'issue_comment'
uses: octokit/request-action@v2.x
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
route: POST /repos/{owner}/{repo}/issues/{issue_number}/comments
owner: ${{ github.repository_owner }}
repo: ${{ github.event.repository.name }}
issue_number: ${{ github.event.pull_request.number }}${{ github.event.issue.number }}
body: |
|
Hello! I'm checking your submission again.
You can see the progress here:
https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/actions/workflows/manage-prs.yml
diff: diff:
needs: needs:
- enabled - enabled