feat(modules/home-manager): add support for configuring environment variables #400
Workflow file for this run
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
name: Update vendorHash | |
on: pull_request | |
permissions: | |
contents: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Update checksum | |
run: | | |
./scripts/update-vendor-hash.sh | |
# git push if we have a diff | |
if [[ -n $(git diff) ]]; then | |
git add default.nix | |
git config --global user.email "<49699333+dependabot[bot]@users.noreply.github.com>" | |
git config --global user.name "dependabot[bot]" | |
git commit -m "update vendorHash" | |
git push origin HEAD:${{ github.head_ref }} | |
fi |