Skip to content

feat: add GHA to auto bump gomod2nix manifest #2

feat: add GHA to auto bump gomod2nix manifest

feat: add GHA to auto bump gomod2nix manifest #2

name: Update gomod2nix.toml
on: pull_request
permissions:
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v26
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
nix_path: nixpkgs=channel:nixos-unstable
- name: Update checksum
run: |
cd src
nix develop --extra-experimental-features "nix-command flakes" '.#' -c "gomod2nix"
# git push if we have a diff
if [[ -n $(git diff) ]]; then
git config --global user.email "[email protected]"
git config --global user.name "MHNightCat"
git commit -am "chore: update gomod2nix"
git push origin HEAD:${{ github.head_ref }}
fi