Skip to content

Commit

Permalink
Update issue-response-handler.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hknokh authored Apr 30, 2024
1 parent b8317b4 commit 3798922
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/issue-response-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
curl -X POST \
-H "Authorization: token ${{ secrets.REPO_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
-d '{"body":"Hello, @${{ github.event.issue.user.login }}\nThank you for reporting a bug. I will take a look at it as soon as possible and let you know of any updates.\nCheers"}' \
-d '{"body":"Hello, @${{ github.event.issue.user.login }}\n\nThank you for reporting a bug.\nI will take a look at it as soon as possible and let you know of any updates.\n\nCheers"}' \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments
- name: Post Comment for 'feature-request'
Expand All @@ -37,7 +37,7 @@ jobs:
curl -X POST \
-H "Authorization: token ${{ secrets.REPO_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
-d '{"body":"Hello, @${{ github.event.issue.user.login }}\nThank you for your feature request. I will review it as soon as possible and provide updates as they become available.\nCheers"}' \
-d '{"body":"Hello, @${{ github.event.issue.user.login }}\n\nThank you for your feature request.\nI will review it as soon as possible and provide updates as they become available.\n\nCheers"}' \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments
- name: Post Comment for 'help-wanted'
Expand All @@ -46,5 +46,5 @@ jobs:
curl -X POST \
-H "Authorization: token ${{ secrets.REPO_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
-d '{"body":"Hello, @${{ github.event.issue.user.login }}\nThank you for reaching out. I will do my best to assist you as quickly as possible and will keep you updated on my progress.\nCheers"}' \
-d '{"body":"Hello, @${{ github.event.issue.user.login }}\n\nThank you for reaching out.\nI will do my best to assist you as quickly as possible and will keep you updated on my progress.\n\nCheers"}' \
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments

0 comments on commit 3798922

Please sign in to comment.