Skip to content

Workflow Dispatcher #1119

Workflow Dispatcher

Workflow Dispatcher #1119

name: Workflow Dispatcher
on:
schedule:
- cron: '0 0 * * *'
push:
paths-ignore:
- 'docs/**'
- '**.md'
branches:
- master
pull_request:
paths-ignore:
- 'docs/**'
- '**.md'
branches:
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.4.0
- name: Build Manifests
run: |
TERM=screen-256color ./hack/build.sh
- name: Push Updates
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git stage -A
git commit -m "Automated Kargo Maintenance Updater" --all 2>&1 || true
git push origin main