[Test] via Welcome.yaml #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Welcome | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
say-hello-to-reporter: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
issues: write | |
steps: | |
- uses: Wei18/GitHubSwiftActions/Actions/Comment@main | |
with: | |
number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}, | |
Thank you for opening this issue! We will review it and get back to you as soon as possible. | |
If you have any additional details or questions, please feel free to update this issue. | |
owner: ${{ github.repository_owner }} | |
repo: ${{ github.event.repository.name }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
anchor: "welcome-comment" |