Skip to content

Update chezmoi-install.sh #29

Update chezmoi-install.sh

Update chezmoi-install.sh #29

name: Update chezmoi-install.sh
on:
schedule:
- cron: '0 3 * * 1' # Every Monday at 03:00 UTC
workflow_dispatch:
jobs:
update-install-script:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Git user
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Run build-install.sh
run: ci/build-install.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
with:
commit-message: "Update chezmoi-install.sh"
title: "Update chezmoi-install.sh"
body: "Automated update of chezmoi-install.sh via scheduled workflow."
branch: "update/chezmoi-install-sh"
base: ${{ github.ref_name }}
labels: "update"
reviewers: "linuxdaemon"
sign-commits: true