Skip to content

Commit

Permalink
Merge pull request #1186 from flyingcircusio/PL-133100-update-nixpkgs
Browse files Browse the repository at this point in the history
Add update-nixpkgs cleanup action
  • Loading branch information
ctheune authored Dec 4, 2024
2 parents a9a4582 + 89e29ec commit b085e0d
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/update-nixpkgs-cleanup.yaml
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 changelog.d/20241204_152719_PL-133100-update-nixpkgs_scriv.md
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)

0 comments on commit b085e0d

Please sign in to comment.