From 7a8819b3f0d02b1e7654c3ca878d0114de97896f Mon Sep 17 00:00:00 2001 From: Stefanni Brasil Date: Mon, 25 Mar 2024 11:28:47 -0600 Subject: [PATCH] Don't skip CI for dynamic README workflow Some projects have required checks for commits to run an action, for example: ``` remote: error: GH006: Protected branch update failed for refs/heads/main. remote: error: Required status check "ci/circleci: build" is expected. ``` I will keep this in mind for a future iteration: add a conditional for a repo to run ci. But for now, all README updates will trigger CI for all repos. --- .github/workflows/dynamic-readme.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dynamic-readme.yaml b/.github/workflows/dynamic-readme.yaml index 40c8759..4dd61a8 100644 --- a/.github/workflows/dynamic-readme.yaml +++ b/.github/workflows/dynamic-readme.yaml @@ -29,6 +29,6 @@ jobs: README.md committer_name: github-actions[bot] committer_email: github-actions[bot]@users.noreply.github.com - commit_message: 'docs: update readme file with markdown templates [skip ci]' + commit_message: 'docs: update readme file with markdown templates' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}