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 9779ca8 commit 2ccf45eCopy full SHA for 2ccf45e
1 file changed
.github/workflows/nix-parse.yml
@@ -19,7 +19,7 @@ jobs:
19
run: |
20
gh api \
21
repos/NixOS/nixpkgs/pulls/${{github.event.number}}/files --paginate \
22
- | jq '.[] | select(.status != "removed" and (.filename | endswith(".nix"))) | .filename' \
+ | jq --raw-output '.[] | select(.status != "removed" and (.filename | endswith(".nix"))) | .filename' \
23
> "$HOME/changed_files"
24
if [[ -s "$HOME/changed_files" ]]; then
25
echo "CHANGED_FILES=$HOME/changed_files" > "$GITHUB_ENV"
@@ -30,6 +30,8 @@ jobs:
30
ref: refs/pull/${{ github.event.pull_request.number }}/merge
31
if: ${{ env.CHANGED_FILES && env.CHANGED_FILES != '' }}
32
- uses: cachix/install-nix-action@7ac1ec25491415c381d9b62f0657c7a028df52a7 # v24
33
+ with:
34
+ nix_path: nixpkgs=channel:nixpkgs-unstable
35
- name: Parse all changed or added nix files
36
37
ret=0
0 commit comments