Skip to content

Commit 65ac771

Browse files
authored
Merge pull request #32 from wayofdev/feat/php-8-3
2 parents 4c0619b + fe3613c commit 65ac771

24 files changed

+639
-154
lines changed

.github/.release-please-config.json

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "node",
4+
"include-component-in-tag": false,
5+
"packages": {
6+
".": {
7+
"package-name": "docker-php-dev",
8+
"changelog-path": "/CHANGELOG.md"
9+
}
10+
},
11+
"changelog-sections": [
12+
{
13+
"type": "feat",
14+
"section": "Features",
15+
"hidden": false
16+
},
17+
{
18+
"type": "fix",
19+
"section": "Bug Fixes",
20+
"hidden": false
21+
},
22+
{
23+
"type": "perf",
24+
"section": "Performance Improvements",
25+
"hidden": false
26+
},
27+
{
28+
"type": "docs",
29+
"section": "Documentation",
30+
"hidden": false
31+
},
32+
{
33+
"type": "deps",
34+
"section": "Dependencies",
35+
"hidden": false
36+
},
37+
{
38+
"type": "refactor",
39+
"section": "Code Refactoring",
40+
"hidden": false
41+
},
42+
{
43+
"type": "test",
44+
"section": "Tests",
45+
"hidden": false
46+
},
47+
{
48+
"type": "ci",
49+
"section": "Continuous Integration",
50+
"hidden": false
51+
},
52+
{
53+
"type": "chore",
54+
"section": "Miscellaneous",
55+
"hidden": true
56+
},
57+
{
58+
"type": "revert",
59+
"section": "Reverts",
60+
"hidden": true
61+
},
62+
{
63+
"type": "build",
64+
"section": "Build System",
65+
"hidden": true
66+
},
67+
{
68+
"type": "security",
69+
"section": "Security",
70+
"hidden": true
71+
},
72+
{
73+
"type": "style",
74+
"section": "Styles",
75+
"hidden": true
76+
}
77+
]
78+
}

.github/.release-please-manifest.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "2.3.1"
3+
}

CODE_OF_CONDUCT.md renamed to .github/CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
63+
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

.github/labeler.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
"type: documentation":
77
- changed-files:
8-
- any-glob-to-any-file: [ 'assets/**/*', '.github/*', './*.md' ]
8+
- any-glob-to-any-file: ['assets/**/*', '.github/*.yml', './*.md']
99

1010
"type: maintenance":
1111
- changed-files:
12-
- any-glob-to-any-file: [ '.github/workflows/*' ]
12+
- any-glob-to-any-file: ['.github/workflows/*']
1313

1414
...

.github/workflows/build-latest.yml

-43
This file was deleted.

.github/workflows/build-release.yml

-50
This file was deleted.

0 commit comments

Comments
 (0)