From df37922a83338b92d7ded19cad3c6ee54f2a7a7d Mon Sep 17 00:00:00 2001 From: Joshua T Date: Mon, 18 Oct 2021 14:57:39 +0530 Subject: [PATCH] Do not bump version on docs or boilerplate update (#200) This consequently does not run the release wordflow Signed-off-by: radiantly --- flytectl/.github/workflows/master.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/flytectl/.github/workflows/master.yml b/flytectl/.github/workflows/master.yml index 320f92c4ce..5a414d6b62 100644 --- a/flytectl/.github/workflows/master.yml +++ b/flytectl/.github/workflows/master.yml @@ -4,22 +4,24 @@ on: push: branches: - master + paths-ignore: + - "docs/**" + - "boilerplate/**" jobs: bump-version: name: Bump Version - if: github.event.head_commit.name != 'flyte-bot' runs-on: ubuntu-latest outputs: version: ${{ steps.bump-version.outputs.tag }} steps: - uses: actions/checkout@v2 with: - fetch-depth: '0' + fetch-depth: "0" - name: Bump version and push tag id: bump-version uses: anothrNick/github-tag-action@1.17.2 env: GITHUB_TOKEN: ${{ secrets.FLYTE_BOT_PAT }} WITH_V: true - DEFAULT_BUMP: patch \ No newline at end of file + DEFAULT_BUMP: patch