generated from ergebnis/php-cs-fixer-config-template
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from ergebnis/feature/synchronize
Enhancement: Synchronize with ergebnis/php-cs-fixer-config-template
- Loading branch information
Showing
16 changed files
with
907 additions
and
170 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
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,10 +1,13 @@ | ||
/.dependabot/ export-ignore | ||
/.github/ export-ignore | ||
/test/ export-ignore | ||
/.editorconfig export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.php_cs export-ignore | ||
/infection.json export-ignore | ||
/Makefile export-ignore | ||
/phpstan.neon export-ignore | ||
/.dependabot/ export-ignore | ||
/.github/ export-ignore | ||
/test/ export-ignore | ||
/.editorconfig export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.php_cs export-ignore | ||
/infection.json export-ignore | ||
/Makefile export-ignore | ||
/phpstan-baseline.neon export-ignore | ||
/phpstan.neon export-ignore | ||
/psalm-baseline.xml export-ignore | ||
/psalm.xml export-ignore |
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 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 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,19 @@ | ||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | ||
|
||
name: "Approve" | ||
|
||
on: | ||
- "pull_request" | ||
|
||
jobs: | ||
approve: | ||
name: "Approve" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- name: "Approve" | ||
uses: "hmarr/[email protected]" | ||
if: "(github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]') && startsWith(github.event.pull_request.title, 'Build(deps-dev)')" | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" |
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,29 @@ | ||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | ||
|
||
name: "Continuous Deployment" | ||
|
||
on: | ||
push: | ||
tags: | ||
- "**" | ||
|
||
jobs: | ||
release: | ||
name: "Release" | ||
|
||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- name: "Determine tag" | ||
id: "determine-tag" | ||
run: "echo \"::set-output name=tag::${GITHUB_REF#refs/tags/}\"" | ||
|
||
- name: "Create release" | ||
uses: "actions/[email protected]" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
with: | ||
draft: false | ||
prerelease: false | ||
release_name: "${{ steps.determine-tag.outputs.tag }}" | ||
tag_name: "${{ steps.determine-tag.outputs.tag }}" |
Oops, something went wrong.