Skip to content
New issue

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

Bump karpikpl/pylint-annotation-action from 1.0.0 to 1.0.1 in the actions-minor group #5

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all 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: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,6 @@ __tests__/runner/*
*.code-workspace

# Python
.venv
.venv
venv
myenv
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
id: pylint
shell: bash
run: |
{ pylint ${{ steps.changed_files.outputs.changed_files || '*.py' }} --output-format=json2:pylint.json,colorized,text:pylint.txt; TASK_EXIT_CODE=$?; } || true
{ pylint ${{ steps.changed_files.outputs.changed_files || '**/*.py' }} --output-format=json2:pylint.json,colorized,text:pylint.txt; TASK_EXIT_CODE=$?; } || true

{
echo "## Pylint"
Expand All @@ -51,7 +51,7 @@ runs:
echo "exitcode=$TASK_EXIT_CODE" >> $GITHUB_OUTPUT

- name: Annotate Commit with Pylint Results
uses: karpikpl/pylint-annotation-action@v1.0.0
uses: karpikpl/pylint-annotation-action@v1.0.1
id: pylint-annotation
with:
head-sha: ${{ steps.changed_files.outputs.head_sha || github.sha }}
Expand Down