mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
29 lines
720 B
YAML
29 lines
720 B
YAML
name: Daily Pull Request
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
create-pull-request:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Make changes
|
|
run: bash ${GITHUB_WORKSPACE}/.github/workflows/kernel_packages_update.sh
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: Daily update
|
|
title: Daily update
|
|
body: |
|
|
This is an automated pull request.
|
|
Daily update performed+9 at $(date)
|
|
branch: daily-update
|
|
delete-branch: true
|