Skip to content

Commit

Permalink
updated package to reflect new repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
wranders committed Mar 1, 2023
1 parent aabbf73 commit 94ac79d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
app_key_pem: ${{ secrets.APP_PRIVATE_KEY }}
- run: |
curl -o /dev/null -s -w "%{http_code}" \
-H 'User-Agent: wranders/get-ghapp-token/test' \
-H 'User-Agent: wranders/ghapp-token-action/test' \
-H 'Authorization: Bearer ${{ steps.get-token.outputs.token }}' \
https://api.github.com/repos/wranders/get-ghapp-token
https://api.github.com/repos/wranders/ghapp-token-action
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ An access token to perform tasks on behalf of the App.
## Example usage

```yaml
- uses: wranders/get-ghapp-token@v1
- uses: wranders/ghapp-token-action@v1
id: get-token
with:
app_id: ${{ secrets.APP_ID }}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async function requestApi<Type>(opts: RequestOptions): Promise<Type> {
...opts,
headers: {
...opts.headers,
'User-Agent': 'wranders/get-ghapp-token',
'User-Agent': 'wranders/ghapp-token-action',
},
};
let responseBody = '';
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "get-ghapp-token",
"name": "ghapp-token-action",
"description": "Login and perform actions as a Github Application",
"license": "MIT",
"version": "0.0.0",
"private": true,
"author": {
"name": "W Anders",
"email": "[email protected]",
"url": "https://github.com/wranders/get-ghapp-token"
"url": "https://github.com/wranders/ghapp-token-action"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wranders/get-ghapp-token.git"
"url": "git+https://github.com/wranders/ghapp-token-action.git"
},
"homepage": "https://github.com/wranders/get-ghapp-token#readme",
"homepage": "https://github.com/wranders/ghapp-token-action#readme",
"bugs": {
"url": "https://github.com/wranders/get-ghapp-token/issues"
"url": "https://github.com/wranders/ghapp-token-action/issues"
},
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 94ac79d

Please sign in to comment.