From 0ea94f196d1b17a337d6ede8ac8d15d793ecb2e7 Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 2 Dec 2024 01:51:07 -0700 Subject: [PATCH] Update PR CI No need to run on chages of only markdown files --- .github/workflows/merge-pr.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/merge-pr.yml b/.github/workflows/merge-pr.yml index e77b3fd..3bcfd55 100644 --- a/.github/workflows/merge-pr.yml +++ b/.github/workflows/merge-pr.yml @@ -1,3 +1,5 @@ +--- + name: "Create Tag on Pull Request merge" on: pull_request: @@ -5,6 +7,9 @@ on: - closed branches: - main + paths: + - "./**" + - '!**/*.md' jobs: TagMerge: @@ -73,3 +78,4 @@ jobs: -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}"\ "${{ github.event.pull_request._links.comments.href }}" \ -d '{"body":"Created tag v${{ steps.tagged.outputs.newtag }}"}' +