Skip to content

Commit 8eeacea

Browse files
authored
Merge pull request #131 from mission-minded-llc/develop
fix: descriptive tag description on closed pull request.
2 parents 56fae2e + 1a9ece5 commit 8eeacea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/tag-version.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Tag Version
22

33
on:
4+
pull_request:
5+
types: [closed]
46
push:
57
branches:
68
- main
@@ -9,6 +11,8 @@ on:
911
jobs:
1012
tag-version:
1113
runs-on: ubuntu-latest
14+
# Only run on push if it's not from a merged PR (to avoid duplicate runs)
15+
if: github.event_name != 'push' || github.event.head_commit.message !~ /^Merge pull request/
1216
permissions:
1317
contents: write # This allows pushing tags and commits
1418
steps:

0 commit comments

Comments
 (0)