Skip to content

Update

Update #53

Workflow file for this run

name: Update
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch: {}
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- name: update flake
run: |
nix flake update
- uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ steps.generate-token.outputs.token }}
commit-message: "chore: update flakes"
title: Update flakes
body: |
- Update flakes
Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
branch: update-flakes/${{ github.run_id }}-${{ github.run_attempt }}