Task: add more projects #79
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: [pull_request_target, issues] | |
jobs: | |
greeting: | |
if: github.repository == 'akebu6/Android-Beginner-Projects' | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/first-interaction@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: 'Thank you for opening an issue, the maintainer will have a look at it and get back to you as soon as possible. In the meantime you can look at the open issues and see if you would like to take up any😊' | |
pr-message: 'Thanks so much for your contribution, really appreciated! We will have a look and merge it if everything checks out!' |