Skip to content

Commit d695bd7

Browse files
committed
🔧 chore(workflows): Update release workflow to include unique tags
Modified the release workflow to use unique tags for appending and prepending text. This change allows for better management of content and prevents duplication by introducing a skip condition if the unique tag is already present.
1 parent 377ce0b commit d695bd7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,7 @@ jobs:
3737
- uses: actions/checkout@v5
3838
- name: Run this action
3939
uses: ./
40-
with: {append: 'test append', prepend: 'test prepend'}
40+
with:
41+
append: '<!-- UNIQUE_TAG_123: test append -->'
42+
prepend: '<!-- UNIQUE_TAG_123: test prepend -->'
43+
skip-if-contains: UNIQUE_TAG_123

0 commit comments

Comments
 (0)