Skip to content

Commit 48f8ee9

Browse files
authored
Merge pull request #3 from guideline-tech/sync-upstream-merge
Sync upstream merge
2 parents eec91c0 + 9984cc1 commit 48f8ee9

File tree

441 files changed

+24229
-21979
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

441 files changed

+24229
-21979
lines changed

.all-contributorsrc

Lines changed: 0 additions & 34 deletions
This file was deleted.

.auto-changelog

Lines changed: 0 additions & 27 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 15 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 57 deletions
This file was deleted.
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
11+
⚠️ **Please note that issues that do not follow the template will be closed.**
12+
## Environment Info
13+
- type: dropdown
14+
id: version
15+
attributes:
16+
label: Version
17+
description: What version of the library are you using?
18+
options:
19+
- v5
20+
- v4 (deprecated)
21+
- v2 (deprecated)
22+
default: 0
23+
validations:
24+
required: true
25+
- type: dropdown
26+
id: ra-version
27+
attributes:
28+
label: Reanimated Version
29+
description: What version of React Native Reanimated are you using?
30+
options:
31+
- v3
32+
- v2 (deprecated)
33+
- v1 (deprecated)
34+
default: 0
35+
validations:
36+
required: true
37+
- type: dropdown
38+
id: gh-version
39+
attributes:
40+
label: Gesture Handler Version
41+
description: What version of Gesture Handler are you using?
42+
options:
43+
- v2
44+
- v1 (deprecated)
45+
default: 0
46+
validations:
47+
required: true
48+
49+
- type: dropdown
50+
id: platform
51+
attributes:
52+
label: Platforms
53+
description: What platform\s this bug is occurring on?
54+
multiple: true
55+
options:
56+
- iOS
57+
- Android
58+
- Web
59+
validations:
60+
required: true
61+
62+
- type: textarea
63+
id: what-happened
64+
attributes:
65+
label: What happened?
66+
description: Please provide a clear and concise description of what the bug is? Include screenshots or gifs if needed.
67+
placeholder: Tell us what happened?
68+
validations:
69+
required: true
70+
71+
- type: textarea
72+
id: repo-steps
73+
attributes:
74+
label: Reproduction steps
75+
description: You must provide a clear list of steps and code to reproduce the problem.
76+
placeholder: ex. - drag the bottom sheet...
77+
value: "- "
78+
validations:
79+
required: true
80+
81+
- type: input
82+
id: snack
83+
attributes:
84+
label: Reproduction sample
85+
description: You must provide a reproduction sample code using **Expo Snack** [issue reproduction template](https://snack.expo.dev/@gorhom/bottom-sheet---issue-reproduction-template)
86+
placeholder: ex. https://snack.expo.dev/@gorhom/bottom-sheet---issue-reproduction-template
87+
validations:
88+
required: true
89+
90+
- type: textarea
91+
id: logs
92+
attributes:
93+
label: Relevant log output
94+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
95+
render: shell

.github/workflows/auto-close.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Auto Close Issue Workflow
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- reopened
8+
- edited
9+
10+
env:
11+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
NUMBER: ${{ github.event.issue.number }}
13+
USER: ${{ github.event.issue.user.login }}
14+
REPO: "gorhom/react-native-bottom-sheet"
15+
16+
jobs:
17+
autoclose:
18+
if: ${{ !contains(github.event.issue.body, 'snack.expo.dev') && !contains(github.event.issue.body, 'gorhom.dev')}}
19+
runs-on: ubuntu-latest
20+
permissions:
21+
issues: write
22+
steps:
23+
- name: Close Issue
24+
run: gh issue close "$NUMBER" --comment "Hello @$USER :wave:, this issue is being automatically closed and locked because it does not follow the issue template." --repo "$REPO"
25+
- name: Label Issue
26+
run: gh issue edit "$NUMBER" --add-label "invalid" --repo "$REPO"
27+
- name: Lock Issue
28+
run: gh issue lock "$NUMBER" -r "spam" --repo "$REPO"

.github/workflows/documentation.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)