-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 1.05 KB
/
update-install-script.yaml
File metadata and controls
33 lines (28 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- 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@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
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