Skip to content

chore(deps): update cachix/install-nix-action action to v30 #1

chore(deps): update cachix/install-nix-action action to v30

chore(deps): update cachix/install-nix-action action to v30 #1

Workflow file for this run

---
name: automerge
"on":
workflow_dispatch:
pull_request:
branches:
- master
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Fetch metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Approve request
id: approve
run: gh pr review --approve "${{github.event.pull_request.html_url}}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable automerge
id: automerge
run: gh pr merge --rebase --auto "${{github.event.pull_request.html_url}}"
env:
GH_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
...