Yogev Ben David
Yogev Ben David
### Breaking change `layout.direction` is no longer needed as we can use react-native's I18n to detect the direction. **Examples** Forcing the layout direction: ```js I18nManager.forceRTL(true); ``` Syncing the layout direction...
```yml name: Enforce PR labels for Github Actions on: pull_request: types: [labeled, unlabeled, opened, edited, synchronize] jobs: enforce-label: runs-on: ubuntu-latest steps: - uses: yogevbd/enforce-label-action@master with: BANNED_LABELS: "banned" ```
```yml name: Enforce PR labels for Github Actions on: pull_request: types: [labeled, unlabeled, opened, edited, synchronize] jobs: enforce-label: runs-on: ubuntu-latest steps: - uses: yogevbd/enforce-label-action@master with: REQUIRED_LABELS_ALL: "bug,enhancement,feature" ```
```yml name: Enforce PR labels for Github Actions on: pull_request: types: [opened, labeled, unlabeled] jobs: enforce-label: runs-on: ubuntu-latest steps: - uses: yogevbd/enforce-label-action@master with: REQUIRED_LABELS_ANY: "bug,enhancement,feature" ```