Skip to content

Commit

Permalink
Revert "stop double-jsoning the changed file output"
Browse files Browse the repository at this point in the history
This reverts commit 2cabcba.
  • Loading branch information
nicholasmhughes committed Dec 29, 2023
1 parent 2cabcba commit 1e6cbb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/get-changed-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: read # for dorny/paths-filter to fetch a list of changed files
pull-requests: read # for dorny/paths-filter to read pull requests
outputs:
changed-files: ${{ steps.changed-files.outputs }}
changed-files: ${{ toJSON(steps.changed-files.outputs) }}
steps:
- uses: actions/checkout@v4

Expand All @@ -32,4 +32,4 @@ jobs:
- '**'
- name: Echo Changed Files Output
run: echo "${{ steps.changed-files.outputs }}"
run: echo "${{ toJSON(steps.changed-files.outputs) }}"

0 comments on commit 1e6cbb1

Please sign in to comment.