-
-
Notifications
You must be signed in to change notification settings - Fork 7
28 lines (26 loc) · 688 Bytes
/
bump.yml
File metadata and controls
28 lines (26 loc) · 688 Bytes
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
name: Bump Comfig Web
on:
workflow_dispatch:
inputs:
reason:
description: "Change reason"
required: true
type: string
default: "bump comfig web"
schedule:
- cron: "0 12 * * *"
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
token: ${{ secrets.REPO_TOKEN }}
fetch-depth: 0
ref: main
- name: Commit bump
run: |
git config user.email "support@mastercomfig.com"
git config user.name "mastercoms"
git commit --allow-empty -m "web data update: ${{ github.event.inputs.reason || 'daily update' }}"
git push