Skip to content

Commit 29a2766

Browse files
committed
ci: minor updates
1 parent bb628c2 commit 29a2766

12 files changed

+32
-24
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ indent_size = 2
1313

1414
[*.yaml.j2]
1515
indent_size = 2
16+
17+
[Makefile]
18+
indent_style = tab

.github/.release-please-config.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@
4242
{
4343
"type": "test",
4444
"section": "Tests",
45-
"hidden": false
46-
},
47-
{
48-
"type": "ci",
49-
"section": "Continuous Integration",
50-
"hidden": false
45+
"hidden": true
5146
},
5247
{
5348
"type": "build",
5449
"section": "Build System",
5550
"hidden": true
5651
},
52+
{
53+
"type": "ci",
54+
"section": "Continuous Integration",
55+
"hidden": true
56+
},
5757
{
5858
"type": "chore",
5959
"section": "Miscellaneous",

.github/ISSUE_TEMPLATE/1-bug-report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ body:
9696
value: |
9797
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
9898
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
99-
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
100-
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
99+
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
100+
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
101101
102102
Additionally, consider joining our discussions on:
103103
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)

.github/ISSUE_TEMPLATE/2-feature-request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ body:
6666
value: |
6767
📛 To ensure a smooth issue processing, please check if a similar feature request has already been submitted before creating a new one.
6868
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
69-
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
70-
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
69+
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
70+
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
7171
7272
Additionally, consider joining our discussions on:
7373
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)

.github/ISSUE_TEMPLATE/3-failing-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ body:
5454
value: |
5555
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
5656
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
57-
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
58-
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
57+
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
58+
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
5959
6060
Additionally, consider joining our discussions on:
6161
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)

.github/ISSUE_TEMPLATE/4-docs-bug-report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ body:
7070
value: |
7171
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
7272
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
73-
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
74-
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
73+
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
74+
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
7575
7676
Additionally, consider joining our discussions on:
7777
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)

.github/ISSUE_TEMPLATE/5-security-report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ body:
2121
2222
- type: markdown
2323
attributes:
24-
value: 'To create a new advisory, go to: [Create Security Advisory](https://github.com/wayofdev/spiral-starter-tpl/security/advisories/new)'
24+
value: 'To create a new advisory, go to: [Create Security Advisory](https://github.com/wayofdev/docker-php-base/security/advisories/new)'
2525

2626
- type: textarea
2727
id: github-advisory-url

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22

3-
concurrency:
4-
group: "${{ github.workflow }}-${{ github.ref }}"
5-
cancel-in-progress: true
6-
73
on: # yamllint disable-line rule:truthy
84
workflow_dispatch:
95
push:
@@ -21,6 +17,10 @@ env:
2117

2218
name: 🚀 Build docker images with latest tag
2319

20+
concurrency:
21+
group: "${{ github.workflow }}-${{ github.ref }}"
22+
cancel-in-progress: true
23+
2424
jobs:
2525
build:
2626
strategy:

.github/workflows/shellcheck.yml

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ name: 🐞 Differential shell-check
1111
permissions:
1212
contents: read
1313

14+
concurrency:
15+
group: "${{ github.workflow }}-${{ github.ref }}"
16+
cancel-in-progress: true
17+
1418
jobs:
1519
shellcheck:
1620
uses: wayofdev/gh-actions/.github/workflows/[email protected]

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22

3-
concurrency:
4-
group: "${{ github.workflow }}-${{ github.ref }}"
5-
cancel-in-progress: true
6-
73
on: # yamllint disable-line rule:truthy
84
pull_request:
95
paths-ignore:
@@ -15,6 +11,10 @@ env:
1511

1612
name: 🧪 Test Docker images
1713

14+
concurrency:
15+
group: "${{ github.workflow }}-${{ github.ref }}"
16+
cancel-in-progress: true
17+
1818
jobs:
1919
test:
2020
strategy:

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ help:
8383
@echo ' 📦 Package docker-php-base (github.com/wayofdev/docker-php-base)'
8484
@echo ' 🤠 Author the dev (github.com/lotyp)'
8585
@echo ' 🏢 ${YELLOW}Org wayofdev (github.com/wayofdev)${RST}'
86+
@echo
8687
.PHONY: help
8788

8889
.EXPORT_ALL_VARIABLES:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ Thank you for considering contributing to the wayofdev community! We are open to
339339
- 🤔 [Suggest a feature](https://github.com/wayofdev/docker-php-base/issues/new?assignees=&labels=type%3A+enhancement&projects=&template=2-feature-request.yml&title=%5BFeature%5D%3A+)
340340
- 🐛 [Report an issue](https://github.com/wayofdev/docker-php-base/issues/new?assignees=&labels=type%3A+documentation%2Ctype%3A+maintenance&projects=&template=1-bug-report.yml&title=%5BBug%5D%3A+)
341341
- 📖 [Improve documentation](https://github.com/wayofdev/docker-php-base/issues/new?assignees=&labels=type%3A+documentation%2Ctype%3A+maintenance&projects=&template=4-docs-bug-report.yml&title=%5BDocs%5D%3A+)
342-
- 👨‍💻 [Contribute to the code](./github/CONTRIBUTING.md)
342+
- 👨‍💻 [Contribute to the code](./.github/CONTRIBUTING.md)
343343

344344
You are more than welcome. Before contributing, kindly check our [contribution guidelines](.github/CONTRIBUTING.md).
345345

0 commit comments

Comments
 (0)