Skip to content

Commit

Permalink
Create auto reply issues
Browse files Browse the repository at this point in the history
  • Loading branch information
asafs932 authored Jul 22, 2024
1 parent a188c51 commit c6423cc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto-reply.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Auto Reply on New Issues
on:
issues:
types: [opened]

jobs:
auto-reply:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: Reply to issue using GitHub CLI
run: |
gh issue comment ${{ github.event.number }} --body "Thank you for raising this issue! We will look into it shortly."
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c6423cc

Please sign in to comment.