-
Notifications
You must be signed in to change notification settings - Fork 2
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 #25 from Emilia-Capital/jdv/update-wpcs
Update WPCS to 3.1.0
- Loading branch information
Showing
2 changed files
with
123 additions
and
39 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Composer Diff | ||
on: | ||
pull_request: | ||
paths: | ||
- 'composer.lock' | ||
jobs: | ||
composer-diff: | ||
name: Composer Diff | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Required to make it possible to compare with PR base branch | ||
|
||
- name: Generate composer diff | ||
id: composer_diff # To reference the output in comment | ||
uses: IonBazan/composer-diff-action@v1 | ||
|
||
- uses: marocchino/sticky-pull-request-comment@v2 | ||
# An empty diff result will break this action. | ||
if: ${{ steps.composer_diff.outputs.composer_diff_exit_code != 0 }} | ||
with: | ||
header: composer-diff # Creates a collapsed comment with the report | ||
message: | | ||
<details> | ||
<summary>Composer package changes</summary> | ||
${{ steps.composer_diff.outputs.composer_diff }} | ||
</details> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.