From 613cf364d3c054f5e23d316b077bdbb8434a6602 Mon Sep 17 00:00:00 2001 From: K Date: Sat, 22 May 2021 09:43:52 +0500 Subject: [PATCH] Skip update READMEs PRs for tags --- .github/workflows/rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 34ca4f9..9cd1820 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -62,6 +62,7 @@ jobs: cargo readme --no-title --no-indent-headings --no-license --no-badges > README.md (cd sys && cargo readme --no-title --no-indent-headings --no-license --no-badges > README.md) - name: Create Pull Request + if: ${{ !startsWith(github.ref, 'refs/tags/') }} uses: peter-evans/create-pull-request@v3 with: base: ${{ github.head_ref }}