Add AI development overview doc outlining shift to planning & review bottlenecks #38
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
| # --------------------------------------------------- | |
| # Welcome | |
| # --------------------------------------------------- | |
| # Greets first-time contributors when they open their | |
| # first issue or pull request in this repository. | |
| # --------------------------------------------------- | |
| name: welcome | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| welcome: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/first-interaction@v3 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| issue_message: > | |
| Thanks for opening your first issue! The Joggr team will review | |
| this shortly. | |
| pr_message: > | |
| Thanks for your first pull request! The Joggr team will review | |
| this shortly. |