fix: test action error #89
Workflow file for this run
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: Greetings | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| issues: | |
| types: [opened] | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: >- | |
| Thank you 🙏🏻 for submitting your first issue to bitssh! | |
| We'll look into it as soon as possible. | |
| pr-message: >- | |
| Thank you 🙏🏻 for your first contribution to bitssh! | |
| We appreciate your effort and will review it shortly. |