Skip to content

Commit

Permalink
ci: minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Sep 12, 2024
1 parent bb628c2 commit 29a2766
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 24 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ indent_size = 2

[*.yaml.j2]
indent_size = 2

[Makefile]
indent_style = tab
12 changes: 6 additions & 6 deletions .github/.release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,18 @@
{
"type": "test",
"section": "Tests",
"hidden": false
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": false
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous",
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1-bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ body:
value: |
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
Additionally, consider joining our discussions on:
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/2-feature-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ body:
value: |
📛 To ensure a smooth issue processing, please check if a similar feature request has already been submitted before creating a new one.
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
Additionally, consider joining our discussions on:
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/3-failing-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ body:
value: |
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
Additionally, consider joining our discussions on:
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/4-docs-bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ body:
value: |
📛 To ensure a smooth issue processing, please check if a similar bug report has already been submitted before creating a new one.
We highly value your contributions, so please make sure to familiarize yourself with our repository's guidelines:
- [Code of Conduct](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/spiral-starter-tpl/blob/master/.github/CONTRIBUTING.md)
- [Code of Conduct](https://github.com/wayofdev/docker-php-base/blob/master/.github/CODE_OF_CONDUCT.md)
- [Contribution Guidelines](https://github.com/wayofdev/docker-php-base/blob/master/.github/CONTRIBUTING.md)
Additionally, consider joining our discussions on:
- [WayOfDev Discord Community](https://discord.gg/CE3TcCC5vr)
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/5-security-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ body:
- type: markdown
attributes:
value: 'To create a new advisory, go to: [Create Security Advisory](https://github.com/wayofdev/spiral-starter-tpl/security/advisories/new)'
value: 'To create a new advisory, go to: [Create Security Advisory](https://github.com/wayofdev/docker-php-base/security/advisories/new)'

- type: textarea
id: github-advisory-url
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
---

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
Expand All @@ -21,6 +17,10 @@ env:

name: 🚀 Build docker images with latest tag

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
build:
strategy:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ name: 🐞 Differential shell-check
permissions:
contents: read

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
shellcheck:
uses: wayofdev/gh-actions/.github/workflows/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
---

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

on: # yamllint disable-line rule:truthy
pull_request:
paths-ignore:
Expand All @@ -15,6 +11,10 @@ env:

name: 🧪 Test Docker images

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
test:
strategy:
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ help:
@echo ' 📦 Package docker-php-base (github.com/wayofdev/docker-php-base)'
@echo ' 🤠 Author the dev (github.com/lotyp)'
@echo ' 🏢 ${YELLOW}Org wayofdev (github.com/wayofdev)${RST}'
@echo
.PHONY: help

.EXPORT_ALL_VARIABLES:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ Thank you for considering contributing to the wayofdev community! We are open to
- 🤔 [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+)
- 🐛 [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+)
- 📖 [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+)
- 👨‍💻 [Contribute to the code](./github/CONTRIBUTING.md)
- 👨‍💻 [Contribute to the code](./.github/CONTRIBUTING.md)
You are more than welcome. Before contributing, kindly check our [contribution guidelines](.github/CONTRIBUTING.md).
Expand Down

0 comments on commit 29a2766

Please sign in to comment.