You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 27, 2022. It is now read-only.
msg: The Expo app for the example from this branch is ready!<br><br>[expo.io/${{ steps.expo.outputs.path }}](https://expo.io/${{ steps.expo.outputs.path }})<br><br><a href="https://exp.host/${{ steps.expo.outputs.path }}"><img src="https://api.qrserver.com/v1/create-qr-code/?size=400x400&data=exp://exp.host/${{ steps.expo.outputs.path }}" height="200px" width="200px"></a>.
52
+
github-token: ${{secrets.GITHUB_TOKEN}}
53
+
script: |
54
+
const body = 'The Expo app for the example from this branch is ready!\n\n[expo.io/${{ steps.expo.outputs.path }}](https://expo.io/${{ steps.expo.outputs.path }})\n\n<a href="https://exp.host/${{ steps.expo.outputs.path }}"><img src="https://api.qrserver.com/v1/create-qr-code/?size=400x400&data=exp://exp.host/${{ steps.expo.outputs.path }}" height="200px" width="200px"></a>';
Copy file name to clipboardExpand all lines: .github/workflows/triage.yml
+31-3Lines changed: 31 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,6 @@ jobs:
8
8
runs-on: ubuntu-latest
9
9
if: github.event.label.name == 'needs more info'
10
10
steps:
11
-
- uses: actions/checkout@v2
12
11
- uses: actions/github-script@v2
13
12
with:
14
13
github-token: ${{secrets.GITHUB_TOKEN}}
@@ -24,7 +23,6 @@ jobs:
24
23
runs-on: ubuntu-latest
25
24
if: github.event.label.name == 'needs repro'
26
25
steps:
27
-
- uses: actions/checkout@v2
28
26
- uses: actions/github-script@v2
29
27
with:
30
28
github-token: ${{secrets.GITHUB_TOKEN}}
@@ -33,5 +31,35 @@ jobs:
33
31
issue_number: context.issue.number,
34
32
owner: context.repo.owner,
35
33
repo: context.repo.repo,
36
-
body: "Hey! Thanks for opening the issue. Can you provide a [minimal repro](https://stackoverflow.com/help/minimal-reproducible-example) which demonstrates the issue? Posting a snippet of your code in the issue is useful, but it's not usually straightforward to run. A repro will help us debug the issue faster. Please try to keep the repro as small as possible.\n\nThe easiest way to provide a repro is on [snack.expo.io](https://snack.expo.io). If it's not possible to repro it on [snack.expo.io](https://snack.expo.io), then you can also provide the repro in a GitHub repository."
34
+
body: "Hey! Thanks for opening the issue. Can you provide a [minimal repro](https://stackoverflow.com/help/minimal-reproducible-example) which demonstrates the issue? Posting a snippet of your code in the issue is useful, but it's not usually straightforward to run. A repro will help us debug the issue faster. Please try to keep the repro as small as possible.\n\nThe easiest way to provide a repro is on [snack.expo.io](https://snack.expo.io). If it's not possible to repro it on [snack.expo.io](https://snack.expo.io), then please provide the repro in a GitHub repository."
body: "Hey! Thanks for opening the issue. The issue tracker is intended for only tracking bug reports in React Navigation. Seems you have an issue related to `react-native-reanimated` library. Please post your issue in [this repo](https://github.com/software-mansion/react-native-reanimated) so that it's notified to the maintainers of that library."
body: "Hey! Thanks for opening the issue. The issue tracker is intended for only tracking bug reports in React Navigation. Seems you have an issue related to `react-native-gesture-handler` library. Please post your issue in [this repo](https://github.com/software-mansion/react-native-gesture-handler) so that it's notified to the maintainers of that library."
@@ -621,7 +621,7 @@ Custom pager which can we used inside `renderPager` prop. It is based on ScrollV
621
621
It accepts the same set of props as default pager extended with one addition:
622
622
623
623
##### ovescroll
624
-
When `true`, the scroll view bounces when it reaches the end of the content. The default value is `false`.
624
+
When `true`, the scroll view bounces when it reaches the end of the content. The default value is `false`.
625
625
626
626
627
627
## Using with other libraries
@@ -630,7 +630,7 @@ When `true`, the scroll view bounces when it reaches the end of the content. The
630
630
631
631
If you want to integrate the tab view with React Navigation's navigation system, e.g. want to be able to navigate to a tab using `navigation.navigate` etc, you can use the following official integrations:
632
632
633
-
-[@react-navigation/material-top-tabs](https://github.com/react-navigation/navigation-ex/tree/master/packages/material-top-tabs) for React Navigation 5
633
+
-[@react-navigation/material-top-tabs](https://github.com/react-navigation/react-navigation/tree/main/packages/material-top-tabs) for React Navigation 5
634
634
-[react-navigation-tabs](https://github.com/react-navigation/react-navigation-tabs) for React Navigation 4
635
635
636
636
Note that some functionalities are not available with the React Navigation 4 integration because of the limitations in React Navigation. For example, it's possible to dynamically change the rendered tabs.
@@ -816,8 +816,8 @@ Remember to add tests for your change if possible.
0 commit comments