Current default example does not converge #1
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: 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 }} | |
pr-message: | | |
π Hello @${{ github.actor }}, thank you for submitting a PR to SMIT! To allow your work to be integrated as seamlessly as possible, we advise you to: | |
- β Verify your PR is **up-to-date** with `Thytu/SMIT` `master` branch. If your PR is behind you can update your code by clicking the 'Update branch' button or by running `git pull` and `git merge master` locally. | |
- β Verify that you added a descriptive title and a clear summary of the changes made in your pull request. | |
- β Ensure all new code is adequately documented and commented for clarity and future reference. | |
- β Confirm that any related issues or tickets are referenced in the pull request description for tracking purposes. | |
issue-message: | | |
π Hello @${{ github.actor }}, thank you for your interest in SMIT π! | |
If this is a π Bug Report, please provide a **minimum reproducible example** to help us debug it. | |
If this is a π‘ Feature Request, please provide a clear outline of the functionality and its use cases. |