mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2024-11-06 02:08:05 +00:00
32 lines
772 B
YAML
32 lines
772 B
YAML
name: git-auto-commit
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
git-auto-commit:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
# Give the default GITHUB_TOKEN write permission.
|
|
# https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Use git-auto-commit-action
|
|
id: "auto-commit-action"
|
|
uses: ./
|
|
|
|
- name: "no changes detected"
|
|
if: steps.auto-commit-action.outputs.changes_detected == 'false'
|
|
run: "echo \"No changes detected\""
|
|
|
|
- name: "changes detected"
|
|
if: steps.auto-commit-action.outputs.changes_detected == 'true'
|
|
run: "echo \"Changes detected\""
|