1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-14 11:57:52 +00:00
sops-nix/.github/workflows/update-vendor-hash.yml

32 lines
975 B
YAML
Raw Normal View History

2023-07-15 06:53:36 +00:00
name: Update vendorHash
2023-07-15 06:20:21 +00:00
on: pull_request
permissions:
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4
2023-07-15 06:20:21 +00:00
with:
ref: ${{ github.event.pull_request.head.sha }}
2023-07-15 06:20:21 +00:00
fetch-depth: 0
- name: Install Nix
uses: cachix/install-nix-action@v30
2023-07-15 06:20:21 +00:00
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
2023-07-15 06:53:36 +00:00
git config --global user.email "<49699333+dependabot[bot]@users.noreply.github.com>"
git config --global user.name "dependabot[bot]"
2023-07-15 06:20:21 +00:00
git commit -m "update vendorHash"
git push origin HEAD:${{ github.head_ref }}
2023-07-15 06:20:21 +00:00
fi