File tree Expand file tree Collapse file tree 5 files changed +130
-18
lines changed
Expand file tree Collapse file tree 5 files changed +130
-18
lines changed Original file line number Diff line number Diff line change 1+ Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.
2+
3+ The best way to propose a feature is to open an issue first and discuss your ideas there before implementing them.
4+
5+ Always follow the [ contribution guidelines] ( https://github.com/imagine10255/acrool-react-table/blob/master/CONTRIBUTING.md ) when submitting a pull request.
Original file line number Diff line number Diff line change 1+ name : Bug report
2+ description : Create a report to help us improve
3+ labels : ["bug"]
4+ body :
5+
6+ - type : textarea
7+ id : issue
8+ attributes :
9+ label : What happened?
10+ description : A clear and concise description of what the bug is.
11+ validations :
12+ required : true
13+
14+ - type : textarea
15+ id : logs
16+ attributes :
17+ label : Relevant log output or stack trace
18+ description : |
19+ Please copy and paste any relevant log output.
20+ Add the full stack trace if available.
21+ If possible, run the failing task with `--stacktrace` flag.
22+
23+ *This will be automatically formatted into code, so there is no need for backticks.*
24+ render : shell
25+
26+ - type : textarea
27+ id : steps
28+ attributes :
29+ label : Steps to reproduce
30+ description : Steps to reproduce the behavior – provide your build configuration.
31+ validations :
32+ required : true
33+
34+ - type : input
35+ id : version
36+ attributes :
37+ label : Plugin version
38+ placeholder : 5.3.1
39+ validations :
40+ required : true
41+
42+ - type : input
43+ id : react
44+ attributes :
45+ label : React version
46+ placeholder : 19.1.0
47+ validations :
48+ required : true
49+
50+ - type : dropdown
51+ id : os
52+ attributes :
53+ label : Operating System
54+ options :
55+ - macOS
56+ - Linux
57+ - Windows
58+
59+ - type : input
60+ id : url
61+ attributes :
62+ label : Link to build, i.e. failing GitHub Action job
63+ placeholder : https://github.com/username/project/actions/runs/1234567890
Original file line number Diff line number Diff line change 1+ blank_issues_enabled : true
2+ contact_links :
3+ - name : Documentation
4+ url : https://acrool-react-carousel.pages.dev/
5+ about : Check the README file in the first place.
6+
Original file line number Diff line number Diff line change 1+ name : Feature request
2+ description : Suggest an idea for this project
3+ labels : ["enhancement"]
4+ body :
5+
6+ - type : textarea
7+ id : cause
8+ attributes :
9+ label : Describe the need of your request
10+ description : A clear and concise description of what the need or problem is.
11+ validations :
12+ required : true
13+
14+ - type : textarea
15+ id : solution
16+ attributes :
17+ label : Proposed solution
18+ description : A clear and concise description of what you want to happen.
19+ validations :
20+ required : true
21+
22+ - type : textarea
23+ id : alternatives
24+ attributes :
25+ label : Alternatives you've considered
26+ description : What did you try so far to accomplish the goal?
27+
28+ - type : textarea
29+ id : context
30+ attributes :
31+ label : Additional context
32+ description : Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change 11name : Test on Release
22
33on :
4- release :
5- types : [published]
6- push :
7- tags :
8- - ' v*'
4+ push :
5+ branches :
6+ - main
7+ - develop
8+ tags :
9+ - ' v[0-9]+.[0-9]+.[0-9]+'
10+ pull_request :
11+ branches :
12+ - main
13+ - develop
914
1015jobs :
11- test :
12- runs-on : ubuntu-latest
16+ test :
17+ if : github.event_name == 'push' || github.event_name == 'pull_request'
18+ runs-on : ubuntu-latest
1319
14- steps :
15- - uses : actions/checkout@v3
20+ steps :
21+ - uses : actions/checkout@v3
1622
17- - name : Setup Node.js
18- uses : actions/setup-node@v3
19- with :
20- node-version : ' 20'
21- cache : ' yarn'
23+ - name : Setup Node.js
24+ uses : actions/setup-node@v3
25+ with :
26+ node-version : ' 20'
27+ cache : ' yarn'
2228
23- - name : Install dependencies
24- run : yarn install --frozen-lockfile
29+ - name : Install dependencies
30+ run : yarn install --frozen-lockfile
2531
26- - name : Run tests
27- run : yarn test
32+ - name : Run tests
33+ run : yarn test
You can’t perform that action at this time.
0 commit comments