39 lines
874 B
YAML
39 lines
874 B
YAML
name: Update
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ../actions/init
|
|
|
|
# https://github.com/actions/checkout/issues/13
|
|
- name: Set Git Config
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
- name: Update
|
|
run: nix run .#update
|
|
|
|
- name: Create Pull Request
|
|
id: cpr
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
branch: update
|
|
title: update
|
|
body: automatic update
|
|
|
|
- name: Enable Automerge
|
|
run: gh pr merge --merge --auto "${{ steps.cpr.outputs.pull-request-number }}"
|
|
env:
|
|
GH_TOKEN: ${{ secrets.PAT }}
|