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

18 lines
317 B
YAML
Raw Normal View History

2020-03-04 03:51:02 +08:00
name: git-auto-commit
on: push
jobs:
2020-03-04 03:54:12 +08:00
git-auto-commit:
2020-03-04 03:51:02 +08:00
runs-on: ubuntu-latest
steps:
2020-03-04 03:54:12 +08:00
- uses: actions/checkout@v2
2020-03-04 03:51:02 +08:00
- name: Use git-auto-commit-action
2020-03-04 04:00:40 +08:00
id: "auto-commit-action"
2020-03-04 03:51:02 +08:00
uses: ./
2020-03-04 04:00:40 +08:00
- name: "outputs"
run: "echo \"${{ steps.auto-commit-action.outputs.changes_detected }}\""