diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5e5152aa..99c18292 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -3,6 +3,8 @@ on: push: branches: - master + paths-ignore: + - 'README.md' pull_request: branches: - master diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 47f554ff..45ff060c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,6 +5,8 @@ on: - v* branches: - master + paths-ignore: + - 'README.md' pull_request: permissions: contents: read diff --git a/.github/workflows/test-coverage.yml b/.github/workflows/test-coverage.yml index 9e693169..88d63fcc 100644 --- a/.github/workflows/test-coverage.yml +++ b/.github/workflows/test-coverage.yml @@ -5,6 +5,8 @@ on: - v* branches: - master + paths-ignore: + - 'README.md' pull_request: permissions: contents: write @@ -40,7 +42,7 @@ jobs: git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git add README.md - git commit -m "chore: Updated coverage badge." + git commit -m "chore: Updated coverage badge. [skip ci]" git fetch origin && git rebase origin/master - name: push-changes if: steps.verify-changed-files.outputs.files_changed == 'true' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04f1d9c6..7a0df3d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,6 +5,8 @@ on: - v* branches: - master + paths-ignore: + - 'README.md' pull_request: permissions: contents: read