Skip to content

Commit

Permalink
Create issue_create_auto_reply.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytro-samoylenko authored Dec 19, 2024
1 parent c83ca0f commit 3f4adcf
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/issue_create_auto_reply.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Add comment
on:
issues:
types:
- opened

jobs:
add-comment:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
repository: vsys-host/shkeeper.io
sparse-checkout: |
.github/issue_create_auto_reply.md
sparse-checkout-cone-mode: false
- name: Add comment
run: gh issue comment "$NUMBER" --body-file "$GITHUB_WORKSPACE/.github/issue_create_auto_reply.md"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUMBER: ${{ github.event.issue.number }}

0 comments on commit 3f4adcf

Please sign in to comment.