Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/auto-request-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
id: check_owner
if: github.event.pull_request.user.id == 4849482 # martin-georgiev
run: |
echo "skip=true" >> $GITHUB_OUTPUT
echo "Skipping auto-review request for repository owner"
exit 0

- name: Request reviews based on configuration
if: ${{ always() && steps.check_owner.outcome == 'skipped' }}
if: ${{ !steps.check_owner.outputs.skip }}
uses: necojackarc/auto-request-review@e89da1a8cd7c8c16d9de9c6e763290b6b0e3d424 # v0.13.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
run: composer run-tests-with-clover

- name: Upload coverage results to Coveralls
if: matrix.calculate-code-coverage == true
if: matrix.calculate-code-coverage == true && github.event_name == 'push'
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion src/MartinGeorgiev/Utils/DoctrineLexer.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
final class DoctrineLexer
{
/**
* Checks if the Lexer is prior to version 2.0.0.
* Checks if the Lexer is prior to version 2.0.0!
*
* In Lexer versions prior to 2.0.0, the lookahead property is an array,
* while in 2.0.0+ it's an object.
Expand Down