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.
2 parents bcbc012 + 0a08c88 commit 29d1f90Copy full SHA for 29d1f90
.github/workflows/changelog.yml
@@ -25,8 +25,8 @@ jobs:
25
run: |
26
set -x
27
set -e
28
- readarray -t added_modified <<<"$(jq -r '.[]' <<<'${{ steps.files.outputs.added_modified }}')"
29
- readarray -t removed <<<"$(jq -r '.[]' <<<'${{ steps.files.outputs.removed }}')"
+ readarray -t added_modified < <(jq -r '.[]' <<<'${{ steps.files.outputs.added_modified }}')
+ readarray -t removed < <(jq -r '.[]' <<<'${{ steps.files.outputs.removed }}')
30
added_count=${#added_modified[@]}
31
removed_count=${#removed[@]}
32
if ${{ !contains(github.event.pull_request.labels.*.name, 'no changelog' ) }}; then
0 commit comments