mirror of https://git.rancher.io/charts
20 lines
346 B
YAML
20 lines
346 B
YAML
|
name: CI-push
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Run CI scripts
|
||
|
run: |-
|
||
|
sudo make ci
|
||
|
|
||
|
- uses: stefanzweifel/git-auto-commit-action@480e111bf8274f3bbd429aef51504f71c808e3e4
|
||
|
with:
|
||
|
commit_message: Generated changes
|