Workflow Dispatcher #1124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |