13 lines
314 B
YAML
13 lines
314 B
YAML
name: Comment when opened
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
jobs:
|
|
comment:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: gh issue comment $ISSUE --body "Thank you for opening this issue!"
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
ISSUE: ${{ github.event.issue.html_url }}
|