Skip to content

Commit 9d5757f

Browse files
authored
Merge pull request #291 from wayofdev/docs/updates
2 parents f7e848f + e7a0ab1 commit 9d5757f

33 files changed

+511
-183
lines changed

.gitattributes

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,15 @@
99
.gitignore export-ignore
1010
.php-cs-fixer.dist.php export-ignore
1111
.pre-commit-config.yaml export-ignore
12-
.yamllint.yaml export-ignore
1312
composer.lock export-ignore
1413
composer-require-checker.json export-ignore
1514
docker-compose.yaml export-ignore
1615
infection.json.dist export-ignore
1716
Makefile export-ignore
17+
pest.xml.dist export-ignore
1818
phpstan.neon.dist export-ignore
1919
phpstan-baseline.neon export-ignore
2020
phpunit.xml.dist export-ignore
2121
psalm.xml export-ignore
2222
psalm-baseline.xml export-ignore
23-
renovate.json export-ignore
2423
rector.php export-ignore
File renamed without changes.
File renamed without changes.

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2+
3+
* @lotyp

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/SECURITY.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,6 @@ Thank you for helping keep `wayofdev/php-cs-fixer-config` and its users safe. We
44

55
<br>
66

7-
## 🙋‍♂️ Supported Versions
8-
9-
Only certain versions of `wayofdev/php-cs-fixer-config` are currently being maintained with security updates. Please use or upgrade to one of these supported versions:
10-
11-
| Version | Supported |
12-
|---------|--------------------|
13-
| ^1.3 | :white_check_mark: |
14-
15-
Please ensure that you are using one of these supported versions before reporting a security issue.
16-
17-
<br>
18-
197
## 🚨 Reporting a Vulnerability
208

219
We take all security bugs in `wayofdev/php-cs-fixer-config` seriously. Please follow the instructions below to report security vulnerabilities.

.github/assets/.gitkeep

Whitespace-only changes.

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
"type: documentation":
1313
- changed-files:
14-
- any-glob-to-any-file: ['assets/**/*', '.github/*', './*.md']
14+
- any-glob-to-any-file: ['.github/*', './*.md']
1515

1616
"type: maintenance":
1717
- changed-files:
File renamed without changes.

.github/workflows/auto-merge-release.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
on: # yamllint disable-line rule:truthy
66
pull_request:
7+
branches:
8+
- master
79

810
permissions:
911
pull-requests: write
@@ -13,15 +15,14 @@ name: 🤞 Auto merge release
1315

1416
jobs:
1517
auto-merge:
16-
if: github.actor == 'lotyp' && startsWith(github.head_ref, 'release-please--')
17-
runs-on: ubuntu-latest
18-
steps:
19-
- name: 🤞 Auto-merge pull request
20-
uses: peter-evans/enable-pull-request-automerge@v3
21-
with:
22-
pull-request-number: ${{ github.event.pull_request.number }}
23-
merge-method: merge
24-
# to trigger other workflows, pass PAT token instead of GITHUB_TOKEN
25-
token: ${{ secrets.GITHUB_TOKEN }}
18+
uses: wayofdev/gh-actions/.github/workflows/auto-merge-release.yml@v3.1.0
19+
with:
20+
os: ubuntu-latest
21+
pull-request-number: ${{ github.event.pull_request.number }}
22+
actor: lotyp
23+
merge-method: merge
24+
secrets:
25+
# to trigger other workflows, pass PAT token instead of GITHUB_TOKEN
26+
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
2627

2728
...

0 commit comments

Comments
 (0)