Skip to content

Commit 38ddd25

Browse files
First initial
0 parents  commit 38ddd25

19 files changed

+1320
-0
lines changed

.editorconfig

Lines changed: 792 additions & 0 deletions
Large diffs are not rendered by default.

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
* text=auto
2+
3+
.github/ export-ignore
4+
tests/ export-ignore
5+
6+
.editorconfig export-ignore
7+
.gitattributes export-ignore
8+
.gitignore export-ignore
9+
10+
pint.json export-ignore
11+
12+
phpunit.xml export-ignore
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Bug Report
2+
description: Report an Issue or Bug with the Telemetry Package
3+
labels: [ "bug" ]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
We're sorry to hear you have a problem. Can you help us solve it by providing the following details.
10+
- type: textarea
11+
id: what-happened
12+
attributes:
13+
label: What Happened
14+
description: What did you expect to happen?
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: how-to-reproduce
19+
attributes:
20+
label: How to Reproduce
21+
description: How did this occur, please add any config values used and provide a set of reliable steps if possible.
22+
placeholder: Install a fresh app, attach Requests middleware, ...
23+
validations:
24+
required: true
25+
- type: input
26+
id: feed-version
27+
attributes:
28+
label: Telemetry Version
29+
description: What version of our Package are you running? Please be as specific as possible
30+
placeholder: 1.0.0
31+
validations:
32+
required: true
33+
- type: input
34+
id: php-version
35+
attributes:
36+
label: PHP Version
37+
description: What version of PHP are you running? Please be as specific as possible
38+
placeholder: 8.4.12
39+
validations:
40+
required: true
41+
- type: dropdown
42+
id: operating-systems
43+
attributes:
44+
label: Operation System
45+
description: On which operating systems does the problem occur? You can select more than one.
46+
multiple: true
47+
options:
48+
- macOS
49+
- Windows
50+
- Linux
51+
validations:
52+
required: true
53+
- type: textarea
54+
id: notes
55+
attributes:
56+
label: Notes
57+
description: Use this field to provide any other notes that you feel might be relevant to the issue.
58+
validations:
59+
required: false
60+
61+
- type: markdown
62+
attributes:
63+
value: |
64+
❤️ The Dragon Code? Please consider supporting [`our collective`](https://boosty.to/dragon-code).

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Feature Proposal
2+
description: Propose a new feature
3+
labels: [ "feature" ]
4+
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Feature description
10+
description: |
11+
Think through your proposal and describe it clearly.
12+
13+
Note that features are only added to the most recent version of Laravel Lang.
14+
validations:
15+
required: true
16+
17+
- type: markdown
18+
attributes:
19+
value: |
20+
❤️ The Dragon Code? Please consider supporting [`our collective`](https://boosty.to/dragon-code).

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!--
2+
- Fill in the form below correctly. This will help the Pest team to understand the PR and also work on it.
3+
-->
4+
5+
### What:
6+
7+
- [ ] Bug Fix
8+
- [ ] New Feature
9+
10+
### Description:
11+
12+
<!-- describe what your PR is solving -->
13+
14+
### Related:
15+
16+
<!-- link to the issue(s) your PR is solving. If it doesn't exist, remove the "Related" section. -->

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
-
4+
package-ecosystem: github-actions
5+
directory: /
6+
schedule:
7+
interval: daily
8+
labels:
9+
- dependabot

.github/workflows/code-style.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Code Style
2+
3+
on:
4+
push:
5+
6+
permissions: write-all
7+
8+
jobs:
9+
Checks:
10+
uses: TheDragonCode/.github/.github/workflows/code-style.yml@main
11+
with:
12+
node: false

.github/workflows/license.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Update license
2+
3+
on:
4+
schedule:
5+
- cron: '0 3 1 1 *'
6+
workflow_dispatch:
7+
8+
jobs:
9+
Update:
10+
uses: TheDragonCode/.github/.github/workflows/license.yml@main
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
jobs:
10+
Update:
11+
uses: TheDragonCode/.github/.github/workflows/release-drafter.yml@main

0 commit comments

Comments
 (0)