Skip to content

Commit 00547e4

Browse files
committed
rename to github-signed-commit
1 parent 9a3f359 commit 00547e4

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
contents: write # grant secrets.GITHUB_TOKEN permission to push file changes
2727

2828
- name: Commit file
29-
uses: ryancyq/signed-commits@v1
29+
uses: ryancyq/github-signed-commit@v1
3030
env:
3131
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3232
with:
@@ -53,7 +53,7 @@ Note: The `GH_TOKEN` environment variable is **required** for GitHub API request
5353
| :--- | :--- |
5454
| `commit-sha` | Full SHA of the signed commit |
5555

56-
[ci_badge]: https://github.com/ryancyq/signed-commits/actions/workflows/ci.yml/badge.svg
57-
[ci_workflows]: https://github.com/ryancyq/signed-commits/actions/workflows/ci.yml
58-
[coverage_badge]: https://codecov.io/gh/ryancyq/signed-commits/graph/badge.svg?token=KZTD2F2MN2
59-
[coverage]: https://codecov.io/gh/ryancyq/signed-commits
56+
[ci_badge]: https://github.com/ryancyq/github-signed-commit/actions/workflows/ci.yml/badge.svg
57+
[ci_workflows]: https://github.com/ryancyq/github-signed-commit/actions/workflows/ci.yml
58+
[coverage_badge]: https://codecov.io/gh/ryancyq/github-signed-commit/graph/badge.svg?token=KZTD2F2MN2
59+
[coverage]: https://codecov.io/gh/ryancyq/github-signed-commit

__tests__/github/client.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('GitHub Client', () => {
3434
it('should set user-agent', async () => {
3535
expect(graphqlClient().endpoint.DEFAULTS.headers).toHaveProperty(
3636
'user-agent',
37-
'@ryancyq/signed-commits/1.0.0'
37+
'@ryancyq/github-signed-commit/1.0.0'
3838
)
3939
})
4040
})

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"type": "module",
3-
"name": "@ryancyq/signed-commits",
3+
"name": "@ryancyq/github-signed-commit",
44
"version": "1.0.0",
55
"description": "Create a signed commit with GitHub Actions",
66
"main": "dist/index.js",
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/ryancyq/signed-commits.git"
9+
"url": "git+https://github.com/ryancyq/github-signed-commit.git"
1010
},
1111
"keywords": [],
1212
"author": "Ryan Chang <ryancyq@gmail.com> (https://github.com/ryancyq)",
1313
"license": "MIT",
1414
"bugs": {
15-
"url": "https://github.com/ryancyq/signed-commits/issues"
15+
"url": "https://github.com/ryancyq/github-signed-commit/issues"
1616
},
1717
"scripts": {
1818
"start": "node dist/index.js",
@@ -24,7 +24,7 @@
2424
"test": "npx jest",
2525
"ci-test": "npx jest --runInBand"
2626
},
27-
"homepage": "https://github.com/ryancyq/signed-commits#readme",
27+
"homepage": "https://github.com/ryancyq/github-signed-commit#readme",
2828
"dependencies": {
2929
"@actions/core": "^1.10.0",
3030
"@actions/exec": "^1.1.0",

0 commit comments

Comments
 (0)