Skip to content

Android TalkBack traversal order is incorrect for masonry layouts with variable height items Or TalkBack skips or reads items out of visual order in masonry layouts #8415

Android TalkBack traversal order is incorrect for masonry layouts with variable height items Or TalkBack skips or reads items out of visual order in masonry layouts

Android TalkBack traversal order is incorrect for masonry layouts with variable height items Or TalkBack skips or reads items out of visual order in masonry layouts #8415

name: Check for reproducer
# This workflow is triggered when issue is created or edited.
on:
issues:
types: [opened, edited]
jobs:
check-for-reproducer:
runs-on: ubuntu-latest
if: |
github.repository == 'react/react-native' && github.event.issue.pull_request == null && github.event.issue.state == 'open' && !contains(github.event.issue.labels.*.name, ':open_umbrella: Umbrella')
steps:
- uses: actions/checkout@v6
- uses: actions/github-script@v8
with:
github-token: ${{ secrets.REACT_NATIVE_BOT_GITHUB_TOKEN }}
script: |
const checkForReproducer = require('./.github/workflow-scripts/checkForReproducer.js')
await checkForReproducer(github, context)