Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion checks/effects.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ let
}
''
set -euo pipefail
# The sandbox nix has no experimental features enabled; child
# nix invocations (updater, nix-update) inherit this.
export NIX_CONFIG="experimental-features = nix-command flakes"
token=$(jq -r '.git.data.token' "$HERCULES_CI_SECRETS_JSON")
export GH_TOKEN="$token"
git config --global user.name "dotfiles-bot"
Expand Down Expand Up @@ -115,7 +118,7 @@ in
minute = 0;
};
outputs.effects.update-packages = mkRepoEffect "update-packages" ''
nix run --extra-experimental-features nix-command .#updater -- --pr
nix run .#updater -- --pr
'';
};

Expand Down
Loading