Rust Lambda functions with cargo-lambda
#2
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: Comment when opened | |
permissions: | |
issues: write | |
checks: read | |
contents: read | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- run: gh issue comment $ISSUE --body "Thank you for opening this issue, we'll review it ASAP." | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE: ${{ github.event.issue.html_url }} |