Skip to content

Merge branch 'main' into open-with-editor #10

Merge branch 'main' into open-with-editor

Merge branch 'main' into open-with-editor #10

name: Update gomod2nix.toml
on:
push:
paths:
- 'src/go.mod'
- 'src/go.sum'
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"
BRANCH_NAME=$(echo ${{ github.ref }} | sed -e 's/refs\/heads\///g')
git push origin HEAD:$BRANCH_NAME
fi