Skip to content

Commit ebb0849

Browse files
committed
ci: test.yml
1 parent 463a8da commit ebb0849

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: test
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Commit Comment
10+
uses: dext7r/commit-comment@main
11+
with:
12+
token: ${{ secrets.GITHUB_TOKEN }}
13+
body: 'This is a test comment.'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This GitHub Action allows you to automatically create a commit comment on a pull
1616

1717
```yaml
1818
- name: Commit Comment
19-
uses: dext7r/commit-comment[email protected]
19+
uses: dext7r/commit-comment@main
2020
with:
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222
body: 'This is a test comment.'
@@ -49,7 +49,7 @@ jobs:
4949
5050
steps:
5151
- name: Commit Comment
52-
uses: dext7r/commit-comment[email protected]
52+
uses: dext7r/commit-comment@main
5353
with:
5454
token: ${{ secrets.GITHUB_TOKEN }}
5555
body: 'Hello from GitHub Action!'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "commit-comment",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "A GitHub Action to commit comment",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)