We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the configuration option
env: - name: SwiftLint uses: norio-nomura/[email protected] env: DIFF_BASE: ${{ github.base_ref }} with: args: --strict
in order to check only files of the current PR, my .swiftlint.yml configuration (containing some exclusion filters) is not taken into account.
.swiftlint.yml
Removing the line DIFF_BASE: ${{ github.base_ref }} re-enables my .swiftlint.yml configuration.
DIFF_BASE: ${{ github.base_ref }}
The text was updated successfully, but these errors were encountered:
If found that adding --config YOUR_SWIFTLINT_PATH.yml on the args: comments helps with this issue.
--config YOUR_SWIFTLINT_PATH.yml
args:
However, I cannot seem to have the action only scan PR only files with this. Hope this helps!
Sorry, something went wrong.
Update SwiftLint GitHub Action
c380b76
Remove that only diffs are checked and therefore the .swiiftlint.yml file ist respected (norio-nomura/action-swiftlint#32)
No branches or pull requests
When using the configuration option
in order to check only files of the current PR, my
.swiftlint.yml
configuration (containing some exclusion filters) is not taken into account.Removing the line
DIFF_BASE: ${{ github.base_ref }}
re-enables my.swiftlint.yml
configuration.The text was updated successfully, but these errors were encountered: