Skip to content

Commit

Permalink
Merge Development into Master (#6)
Browse files Browse the repository at this point in the history
* Enable Auto Generation of Release Notes

* Limit PHP-CS-Fixer finder to `/src` & `/tests` directories
  • Loading branch information
ahmedghanem00 authored May 8, 2024
1 parent 1135f43 commit cd051e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ env.RELEASE_TAG }}
name: v${{ env.RELEASE_TAG }}
generateReleaseNotes: true

3 changes: 2 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
EOF;

$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
->ignoreVCSIgnored(true);

return (new PhpCsFixer\Config())
Expand Down

0 comments on commit cd051e4

Please sign in to comment.