git-auto-commit-action/.github/workflows/integration-tests.yml

27 lines
446 B
YAML
Raw Normal View History

2020-10-17 12:29:42 +00:00
name: Integration Tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: master
- name: Add Files
run: touch {a,b,c}.txt
- name: Run git-auto-commit
id: "auto-commit-action"
uses: ./
with:
commit_message: Message
checkout_options: -b
branch: ci-test
2020-10-17 12:46:50 +00:00
- name: Delete Branch
run: git push -d origin ci-test