-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to latest QA tooling * Centralize GHA workflows * Replace Dependabot with Renovate * Bump to PHP8.2+
- Loading branch information
1 parent
3fdbf73
commit 13d1a64
Showing
14 changed files
with
6,816 additions
and
5,759 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
# Ignoring files for distribution archieves | ||
examples/ export-ignore | ||
.idea/ | ||
.github/ export-ignore | ||
etc/ export-ignore | ||
tests/ export-ignore | ||
.travis.yml export-ignore | ||
.gitignore export-ignore | ||
var/ export-ignore | ||
.devcontainer.json export-ignore | ||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
.scrutinizer.yml export-ignore | ||
phpunit.xml.dist export-ignore | ||
.gitignore export-ignore | ||
CONTRIBUTING.md export-ignore | ||
infection.json.dist export-ignore | ||
Makefile export-ignore | ||
README.md export-ignore |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"github>WyriHaximus/renovate-config:php-package" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Release Management | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- labeled | ||
- unlabeled | ||
- synchronize | ||
- reopened | ||
milestone: | ||
types: | ||
- closed | ||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
jobs: | ||
release-managment: | ||
name: Create Release | ||
uses: WyriHaximus/github-workflows/.github/workflows/package-release-managment.yaml@main | ||
with: | ||
milestone: ${{ github.event.milestone.title }} | ||
description: ${{ github.event.milestone.title }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
.idea/ | ||
var/ | ||
vendor/ | ||
.env | ||
etc/qa/.phpunit.result.cache |
Oops, something went wrong.