fix: allow touch down event to propagate to double tap gesture listener #5
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: Welcome New Contributors | |
| on: | |
| pull_request: | |
| types: [opened] | |
| permissions: | |
| pull-requests: write | |
| models: read | |
| jobs: | |
| welcome: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' | |
| steps: | |
| - name: Generate welcome message | |
| uses: actions/ai-inference@v1 | |
| id: ai | |
| with: | |
| prompt: | | |
| Write a friendly welcome message for a first-time contributor. Include: | |
| 1. Thank them for their first PR | |
| 2. Mention checking CONTRIBUTING.md | |
| 3. Explain that after fixing 5 bugs, they can work on adding features | |
| 4. Link to the welcome document: https://github.com/commons-app/commons-app-documentation/blob/master/android/Volunteers-welcome!.md | |
| 5. Offer to help if they have questions | |
| Keep it brief and encouraging. | |
| model: openai/gpt-4o-mini | |
| - name: Post welcome comment | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const message = `${{ steps.ai.outputs.response }}`; | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: ${{ github.event.pull_request.number }}, | |
| body: message | |
| }); |