Add GitHub Action to Enhance Flow Quality Checks #31
This file contains hidden or 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: New issue greeting | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| comment: | |
| runs-on: trailheadapps-Ubuntu | |
| steps: | |
| - uses: actions/github-script@v6 | |
| with: | |
| script: | | |
| await github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: 'Thank you for posting this issue. 🙇🏼♂️<br/>We will come back to you shortly.' | |
| }) |