We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0295f98 commit 91507ccCopy full SHA for 91507cc
.github/workflows/list-changed-files.yml
@@ -29,7 +29,7 @@ permissions: {}
29
30
jobs:
31
changed-files:
32
- name: ${{ matrix.description }} files between tags ${{ matrix.old_tag }} and ${{ matrix.new_tag }}
+ name: ${{ matrix.description }} files
33
runs-on: 'ubuntu-24.04'
34
permissions:
35
contents: read
@@ -66,6 +66,7 @@ jobs:
66
NEW_TAG: ${{ matrix.new_tag }}
67
OLD_TAG: ${{ matrix.old_tag }}
68
run: |
69
+ echo "## $DESCRIPTION files between the $OLD_TAG and $NEW_TAG tags:" >> "$GITHUB_STEP_SUMMARY"
70
DIFF_OUTPUT=$(git diff --name-status "$OLD_TAG"..."$NEW_TAG" | grep -E "^($PATTERN)" | cut -c3-)
71
if [ -n "$DIFF_OUTPUT" ]; then
72
cat << EOF >> "$GITHUB_STEP_SUMMARY"
0 commit comments