mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2024-11-06 02:08:05 +00:00
3d1b5e078a
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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@v4
|
|
|
|
- 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\""
|