We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3e5795 commit 595ff30Copy full SHA for 595ff30
.github/workflows/lint-python.yml
@@ -22,7 +22,11 @@ jobs:
22
- name: Modified files
23
id: file-changes
24
run: |
25
- echo "changed-files=$(git diff --name-only -r origin/${GITHUB_BASE_REF} origin/${GITHUB_HEAD_REF} | grep '\.py' | tr '\n' ' ')" >> $GITHUB_OUTPUT
+ echo \
26
+ "changed-files=$(git diff --name-only -r origin/${GITHUB_BASE_REF} origin/${GITHUB_HEAD_REF} \
27
+ | grep '\.py' \
28
+ | tr '\n' ' ')" \
29
+ >> $GITHUB_OUTPUT
30
31
- name: Check GitHub event type to determine reporter type
32
0 commit comments