Skip to content

Commit c3fd580

Browse files
Upload GitHub artefacts
1 parent 9fadad0 commit c3fd580

File tree

7 files changed

+181
-0
lines changed

7 files changed

+181
-0
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* SimonDarksideJ

.github/FUNDING.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# These are supported funding model platforms
2+
3+
github: [SimonDarksideJ]
4+
ko_fi: Ko-fi.com/uiextensions
5+
issuehunt: simondarksidej
6+
custom: https://paypal.me/unityuiextensions
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
name: Bug report
3+
about: Create a report to identify a potential issue
4+
title: 'BUG: '
5+
labels: Bug
6+
assignees: ''
7+
---
8+
9+
# Unity UI Extensions Bug Report
10+
11+
## Describe the bug
12+
<!-- Please provide a clear and concise description of what the bug is. -->
13+
14+
## To Reproduce
15+
<!-- Include Steps to reproduce the behavior: -->
16+
17+
1. Go to '...'
18+
2. Click on '....'
19+
3. Scroll down to '....'
20+
4. See error
21+
22+
## Expected behavior
23+
<!-- A clear and concise description of what you expected to happen. -->
24+
25+
## Actual behavior
26+
<!-- What is actually happening -->
27+
28+
## Screenshots
29+
<!-- If applicable, add screenshots to help explain your problem. -->
30+
31+
## Your Setup
32+
<!-- please complete any/all the following information. -->
33+
34+
- **Operation System:**
35+
- [ ] Windows
36+
- [ ] MacOs
37+
- [ ] Linux
38+
- [ ] Other <!-- Please Specify Platform -->
39+
- **Unity Version:** <!-- Please Specify Version --> 2020.3.15f
40+
- **Unity UI Extensions Version**
41+
- [ ] 2.3.0 <!-- Please Specify Version or commit sha -->
42+
43+
## Additional context
44+
<!-- Add any other context about the problem here. -->
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for the Unity UI Extensions
4+
title: 'Feature Request: '
5+
labels: Feature Request
6+
assignees: ''
7+
---
8+
9+
# Unity UI Extensions Feature Request
10+
11+
## Is your feature request related to a problem? Please describe
12+
13+
<!--Please provide a clear and concise description of what the problem is.
14+
E.g. I'm always frustrated when [...]-->
15+
16+
## How would you classify your suggestion
17+
<!--What type of enhancement is it, e.g:-->
18+
19+
- New platform support
20+
- Usability / Configuration
21+
- Architecture / Services
22+
23+
## Describe the solution you'd like
24+
<!--A clear and concise description of what you want to happen.-->
25+
26+
## Describe alternatives you've considered
27+
<!--A clear and concise description of any alternative solutions or features you've considered.-->
28+
29+
## Additional context
30+
<!--Add any other context or screenshots about the feature request here.-->
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Request for Information
3+
about: Not sure how to do something, just ask.
4+
title: 'RFI: '
5+
labels: Question
6+
assignees: ''
7+
---
8+
9+
# Unity UI Extensions Request for Information
10+
11+
<!-- As imperfect beings, we try to teach and show how to make using the framework easy to handle, but sometimes we will fall short. Help us to better educate adopters by pointing out where we need to give more information. -->
12+
13+
## What are you trying to achieve?
14+
15+
<!--
16+
Add a clear and concise description of what is it you are trying to implement.
17+
Include screenshots or examples from other projects if it helps.
18+
-->
19+
20+
## What have you already tried
21+
22+
<!--
23+
Have you tried to complete the task yourself but couldn't figure it out, if so what and why?
24+
-->
25+
26+
## What material have you referenced that didn't answer your question
27+
28+
<!--
29+
What other content have you tried reading / viewing that didn't answer your question?
30+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Unity UI Extensions - Pull Request
2+
3+
## Overview
4+
<!-- Please provide a clear and concise description of the pull request. -->
5+
6+
## Changes
7+
<!-- Brief list of the targeted features that are being changed. -->
8+
9+
- Fixes: <!--issue number or url-->
10+
11+
## Breaking Changes
12+
<!-- Are there any breaking changes included in this change that would prevent or cause issue for existing projects? -->
13+
14+
- Breaks
15+
16+
## Related Submodule Changes
17+
18+
<!-- Include any submodule related Pull Request links here -->
19+
- URL
20+
21+
## Testing status
22+
<!-- Remove the options that do not apply -->
23+
* No tests have been added.
24+
* Includes unit tests.
25+
* Includes performance tests.
26+
* Includes integration tests.
27+
28+
### Manual testing status
29+
<!-- Describe how you tested your implementation/fix. Try to mention all the cases and flows. -->
30+
<!-- It will help the reviewer to understand if you missed any cases or test steps as well as will tell more about your feature or fix. -->
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Build and test UPM packages for platforms
2+
3+
on:
4+
pull_request:
5+
branches-ignore:
6+
- 'release'
7+
# Ignore PRs targetting main
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
concurrency:
13+
group: ${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
# Check Unity version requird by the package
18+
validate-environment:
19+
name: Get Unity Version from UPM package
20+
uses: Unity-UI-Extensions/reusableworkflows/.github/workflows/getunityversionfrompackage.yml@main
21+
with:
22+
build-target: self-hosted
23+
24+
# Check Unity Hub and Editor Environment
25+
Setup-Unity:
26+
name: Validate Unity Install
27+
needs: validate-environment
28+
uses: Unity-UI-Extensions/reusableworkflows/.github/workflows/validateunityinstall.yml@main
29+
with:
30+
build-target: self-hosted
31+
unityversion: ${{ needs.validate-environment.outputs.unityversion }}
32+
33+
# Run Unity unit tests defined in the package
34+
Run-Unit-Tests:
35+
name: Run Unity Unit Tests
36+
needs: Setup-Unity
37+
uses: Unity-UI-Extensions/reusableworkflows/.github/workflows/rununityunittests.yml@main
38+
with:
39+
build-target: self-hosted
40+
unityversion: ${{ needs.Setup-Unity.outputs.unityeditorversion }}

0 commit comments

Comments
 (0)