Skip to content

Commit 97bf5a7

Browse files
committed
Skip workflow execution for Release Candidate (RC) versions
1 parent da591a5 commit 97bf5a7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/create-tweet-on-x.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
jobs:
88
tweet:
99
runs-on: ubuntu-latest
10+
# Skip workflow execution for Release Candidate (RC) versions
11+
if: ${{ !contains(github.event.release.tag_name, 'RC') }}
1012
steps:
1113
- uses: actions/setup-go@v5
1214
with:

0 commit comments

Comments
 (0)