forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: Update channel pins | ||
|
||
on: | ||
push: | ||
branches: | ||
- nixos-unstable | ||
# Any release branches like nixos-23.05 | ||
- 'nixos-[0-9][0-9].[0-9][0-9]' | ||
|
||
# Needed to create PRs | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
update_pin: | ||
name: Update channel pin | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: cachix/install-nix-action@v22 | ||
- name: Compute development branch | ||
id: dev-branch | ||
run: | | ||
if [[ "$GITHUB_REF_NAME" == nixos-unstable ]]; then | ||
branch=master | ||
else | ||
# Removes the "nixos" prefix and replaces it with "release" | ||
branch=release${GITHUB_REF_NAME#nixos} | ||
fi | ||
echo "branch=$branch" >> "$GITHUB_OUTPUT" | ||
- name: Check out development branch | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ steps.dev-branch.outputs.branch }} | ||
- name: Update pin | ||
id: update | ||
run: | | ||
newRev=$GITHUB_SHA | ||
pinFile=lib/channel/pin.json | ||
echo "Fetching new revision $newRev" | ||
stdout=$(nix-prefetch-url \ | ||
"${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/tarball/$newRev" \ | ||
--type sha256 --unpack --print-path --name nixpkgs) | ||
mapfile -t newInfo <<<"$stdout" | ||
newHash=${newInfo[0]} | ||
newPath=${newInfo[1]} | ||
newPinFileContents=$(jq -n \ | ||
--arg rev "$newRev" \ | ||
--arg sha256 "$newHash" \ | ||
'$ARGS.named') | ||
echo -e "File $pinFile would be updated to:\n$newPinFileContents" | ||
echo "Comparing this with the revision of the existing file" | ||
if ! oldRev=$(jq -r '.rev' "$pinFile"); then | ||
echo "There is no existing file, make sure to initialize it properly, possibly using the above value" | ||
exit 1 | ||
else | ||
echo "The existing file has revision $oldRev, now fetching that too" | ||
stdout=$(nix-prefetch-url \ | ||
"${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/tarball/$oldRev" \ | ||
--type sha256 --unpack --print-path --name nixpkgs) | ||
mapfile -t newInfo <<<"$stdout" | ||
oldHash=${oldInfo[0]} | ||
oldPath=${oldInfo[1]} | ||
change_url="$GITHUB_SERVER_URL"/"$GITHUB_REPOSITORY"/compare/"$oldRev".."$newRev" | ||
echo "Checking if anything other than $pinFile changed between $oldRev and $newRev" | ||
# Only don't make a PR if only the pin file changed, not if it was added/removed | ||
if [[ -f "$oldPath"/"$pinFile" ]] \ | ||
&& [[ -f "$newPath"/"$pinFile" ]] \ | ||
&& diff >/dev/null --recursive --exclude "$pinFile" "$oldPath" "$newPath"; then | ||
echo "Nothing changed, no PR to update the pin necessary" | ||
create_pr= | ||
else | ||
echo "The channel changed, PR to update the pin is necessary" | ||
create_pr=1 | ||
fi | ||
fi | ||
echo "create_pr=$create_pr" >> "$GITHUB_OUTPUT" | ||
if [[ -n "$create_pr" ]]; then | ||
echo "Updating $pinFile" | ||
printf "%s\n" "$newPinFileContents" > "$pinFile" | ||
echo "Assembling PR title and body" | ||
if [[ "$GITHUB_REF_NAME" != nixos-unstable ]]; then | ||
pr_title="[${GITHUB_REF_NAME#nixos-}] " | ||
fi | ||
pr_title="${pr_title}Update pinned channel commit" | ||
pr_body_path=$(mktemp) | ||
{ | ||
echo "Automated PR to update the pin of the $GITHUB_REF_NAME channel in the ${{ steps.dev_branch.outputs.branch }} branch to the latest commit $GITHUB_SHA." | ||
echo "" | ||
echo "[Channel changes]($change_url)" | ||
} > "$pr_body_path" | ||
echo "pr_title=$pr_title" >> "$GITHUB_OUTPUT" | ||
echo "pr_body_path=$pr_body_path" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
if: ${{ steps.update.outputs.create_pr != '' }} | ||
with: | ||
branch: "update-channel-pin/${{ steps.dev-branch.outputs.branch }}" | ||
commit-message: "Update pinned channel commit" | ||
title: "${{ steps.update.outputs.pr_title }}" | ||
author: "GitHub <[email protected]>" | ||
body-path: "${{ steps.update.outputs.pr_body_path }}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ lib }: | ||
{ | ||
latestKnownNixOSChannelInfo = lib.importJSON ./pin.json; | ||
|
||
latestKnownNixOSChannel = fetchTarball { | ||
url = "https://github.com/NixOS/nixpkgs/tarball/${lib.channel.latestKnownNixOSChannelInfo.rev}"; | ||
sha256 = lib.channel.latestKnownNixOSChannelInfo.sha256; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"rev": "f6686b969dbe60d8dd72c6f1ebeeadc20c524bcb", | ||
"sha256": "0cx94ixvyq8v5a9zgx003g65g7jxpl5dmfl5rcq2zvr29z9zdn1d" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters