Skip to content

Commit ae1518a

Browse files
committed
fix: use correct version
1 parent f6140d4 commit ae1518a

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo "duration=3m 24s" >> $GITHUB_OUTPUT
2424
2525
- name: Update E2E Results Comment
26-
uses: ./
26+
uses: johanwulf/replace-comment@v1.0.0
2727
with:
2828
issue-number: ${{ github.event.pull_request.number }}
2929
body-includes: '<!-- e2e-test-results -->'

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ When you **update** a comment, it stays in its original chronological position.
1919

2020
```yaml
2121
- name: Replace E2E Test Results Comment
22-
uses: johanwulf/replace-comment@v1
22+
uses: johanwulf/replace-comment@v1.0.0
2323
with:
2424
issue-number: ${{ github.event.pull_request.number }}
2525
body-includes: '<!-- e2e-test-results -->'
@@ -39,7 +39,7 @@ When you **update** a comment, it stays in its original chronological position.
3939
4040
```yaml
4141
- name: Replace Build Report
42-
uses: johanwulf/replace-comment@v1
42+
uses: johanwulf/replace-comment@v1.0.0
4343
with:
4444
token: ${{ secrets.GITHUB_TOKEN }}
4545
repository: ${{ github.repository }}
@@ -108,7 +108,7 @@ jobs:
108108
109109
- name: Update test results comment
110110
if: github.event_name == 'pull_request'
111-
uses: johanwulf/replace-comment@v1
111+
uses: johanwulf/replace-comment@v1.0.0
112112
with:
113113
issue-number: ${{ github.event.pull_request.number }}
114114
body-includes: '<!-- test-results -->'
@@ -127,7 +127,7 @@ jobs:
127127

128128
```yaml
129129
- name: Update deployment status
130-
uses: johanwulf/replace-comment@v1
130+
uses: johanwulf/replace-comment@v1.0.0
131131
with:
132132
issue-number: ${{ github.event.pull_request.number }}
133133
body-regex: '<!-- deploy-status-.*? -->'
@@ -154,7 +154,7 @@ jobs:
154154
ls -la dist/ | awk '{print "| " $9 " | " $5 " |"}' >> build-report.md
155155
156156
- name: Post build report
157-
uses: johanwulf/replace-comment@v1
157+
uses: johanwulf/replace-comment@v1.0.0
158158
with:
159159
issue-number: ${{ github.event.pull_request.number }}
160160
body-includes: '<!-- build-artifacts -->'
@@ -195,7 +195,7 @@ Only create comments when needed:
195195
```yaml
196196
- name: Replace comment
197197
if: github.event_name == 'pull_request' && failure()
198-
uses: johanwulf/replace-comment@v1
198+
uses: johanwulf/replace-comment@v1.0.0
199199
with:
200200
# ... your config
201201
```

0 commit comments

Comments
 (0)