We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bbab50 commit 880bc08Copy full SHA for 880bc08
.github/workflows/on-markdown-update.yml
@@ -29,16 +29,14 @@ jobs:
29
30
- name: Get changed files
31
id: changed-markdown-files
32
- env:
33
- FILE_MASKS: ${{ steps.define-file-masks.outputs.file_masks }}
34
run: |
35
# Initialize variables
36
changed_files=""
37
deleted_files=""
38
any_changes="false"
39
40
# Loop through each file mask and check for changes
41
- for mask in $FILE_MASKS; do
+ for mask in ${{ env.file_masks }}; do
42
# Get the list of changed files for the current mask
43
current_changed_files=$(git diff --name-status ${{ github.event.before }} ${{ github.event.after }} | grep '^[AM]' | grep "${mask}" | awk '{print $2}')
44
# Get the list of deleted files for the current mask
0 commit comments