[iOS][Fabric] Button views are recycled with stale gesture recognizers attached, blocking the ancestor ScrollView pan — shouldBeRecycled guard is TARGET_OS_OSX only #8318
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: Check for stale issues | |
| on: | |
| schedule: | |
| - cron: '37 21 * * *' # at 21:37 every day | |
| issues: | |
| types: [edited] | |
| issue_comment: | |
| types: [created, edited] | |
| workflow_dispatch: | |
| jobs: | |
| main: | |
| if: github.repository == 'software-mansion/react-native-gesture-handler' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Actions | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: software-mansion-labs/swmansion-bot | |
| ref: stable | |
| - uses: actions/cache@v4 | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
| - name: Install Actions | |
| run: yarn install | |
| - name: Close when stale | |
| uses: ./close-when-stale | |
| with: | |
| close-when-stale-label: Close when stale | |
| days-to-close: 20 |