From 7d2f2eddc830ee416c9f2c53ab5dd6fafdb1f2b4 Mon Sep 17 00:00:00 2001 From: Krzysztof Szyper <45788587+ChristophShyper@users.noreply.github.com> Date: Mon, 4 Jul 2022 08:49:51 +0200 Subject: [PATCH] Update find formula in README.md Addresses https://github.com/devops-infra/action-commit-push/issues/59 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e7fa28d..2d7ba6f 100644 --- a/README.md +++ b/README.md @@ -82,9 +82,9 @@ jobs: uses: actions/checkout@v2 - name: Change something run: | - find . -type f -name "*" -print0 | xargs -0 sed -i "s/foo/bar/g" + find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g" - name: Commit and push changes - uses: devops-infra/action-commit-push@v0.9.0 + uses: devops-infra/action-commit-push@master with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_message: Replaced foo with bar @@ -103,9 +103,9 @@ jobs: uses: actions/checkout@v2 - name: Change something run: | - find . -type f -name "*" -print0 | xargs -0 sed -i "s/foo/bar/g" + find . -type f -name "*.md" -print0 | xargs -0 sed -i "s/foo/bar/g" - name: Commit and push changes - uses: devops-infra/action-commit-push@v0.9.0 + uses: devops-infra/action-commit-push@master with: github_token: ${{ secrets.GITHUB_TOKEN }} commit_prefix: "[AUTO-COMMIT] foo/bar replace"