✨ Add Tinyapl (and some missing Kap) #3
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: Auto Assign | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| assign: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Handle Issues | |
| - if: github.event_name == 'issues' | |
| uses: pozil/auto-assign-issue@v2 | |
| with: | |
| assignees: codereport | |
| numOfAssignee: 1 | |
| # Handle PRs | |
| - if: github.event_name == 'pull_request' | |
| uses: toshimaru/[email protected] | |
| - if: github.event_name == 'pull_request' | |
| uses: kentaro-m/[email protected] | |
| with: | |
| reviewers: codereport | |
| numberOfReviewers: 1 |