-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1196 from flyingcircusio/PL-os-2411update-2024121…
…0-update-nixpkgs-2024-12-10 [24.11] update nixpkgs 2024 12 10
- Loading branch information
Showing
8 changed files
with
172 additions
and
79 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,46 @@ | ||
name: update-nixpkgs-cleanup | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
update-nixpkgs-on-merge: | ||
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'nixpkgs-auto-update/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: flyingcircusio/fc-nixos-release-tools | ||
path: 'release-tools' | ||
- uses: cachix/install-nix-action@v21 | ||
with: | ||
# Nix 2.24 breaks flake update | ||
install_url: https://releases.nixos.org/nix/nix-2.18.9/install | ||
- uses: actions/create-github-app-token@v1 | ||
id: app-token | ||
with: | ||
app-id: ${{ vars.NIXPKGS_UPDATE_APP_ID }} | ||
private-key: ${{ secrets.NIXPKGS_UPDATE_APP_PRIVATE_KEY }} | ||
owner: ${{ github.repository_owner }} | ||
- run: | | ||
echo "::add-mask::${{steps.app-token.outputs.token}}" | ||
- name: Get GitHub App User ID | ||
id: get-user-id | ||
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT" | ||
env: | ||
GH_TOKEN: ${{ steps.app-token.outputs.token }} | ||
- run: | | ||
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]' | ||
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>' | ||
- name: build release tooling | ||
run: | | ||
nix build ./release-tools# | ||
- run: | | ||
./result/bin/update-nixpkgs cleanup \ | ||
--merged-pr-id ${{ github.event.number }} \ | ||
--nixpkgs-dir nixpkgs \ | ||
--nixpkgs-origin-url https://x-access-token:${{steps.app-token.outputs.token}}@github.com/flyingcircusio/nixpkgs.git | ||
env: | ||
GH_TOKEN: ${{ steps.app-token.outputs.token }} |
19 changes: 19 additions & 0 deletions
19
changelog.d/20241204_152719_PL-133100-update-nixpkgs_scriv.md
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,19 @@ | ||
<!-- | ||
A new changelog entry. | ||
Delete placeholder items that do not apply. Empty sections will be removed | ||
automatically during release. | ||
Leave the XX.XX as is: this is a placeholder and will be automatically filled | ||
correctly during the release and helps when backporting over multiple platform | ||
branches. | ||
--> | ||
|
||
### Impact | ||
|
||
|
||
### NixOS XX.XX platform | ||
|
||
- Internal: Introduce automatic nixpkgs update workflow (PL-133100) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Oops, something went wrong.