Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update github repo URLs #230

Merged
merged 2 commits into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- run: pnpm run test
- name: 'Setup git coordinates'
run: |
git remote set-url origin https://${{secrets.GH_USER}}:${{secrets.GH_TOKEN}}@github.com/veramolabs/agent-explorer.git
git remote set-url origin https://${{secrets.GH_USER}}:${{secrets.GITHUB_TOKEN}}@github.com/decentralized-identity/agent-explorer.git
git config user.name $GH_USER
git config user.email $GH_EMAIL

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:
# in GitHub repo → Settings → Secrets → Actions
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
# Creating a token https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The list of community plugins is hardcoded in `./packages/agent-explore/src/plug
```bash
mkdir veramolabs
cd veramolabs
git clone https://github.com/veramolabs/agent-explorer.git
git clone https://github.com/decentralized-identity/agent-explorer.git
git clone https://github.com/veramolabs/agent-explorer-plugin-brainshare.git
git clone https://github.com/veramolabs/agent-explorer-plugin-gitcoin-passport.git
git clone https://github.com/veramolabs/agent-explorer-plugin-kudos.git
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "1.72.0",
"npmClient": "pnpm",
"changelog": {
"repo": "veramolabs/agent-explorer",
"repo": "decentralized-identity/agent-explorer",
"cacheDir": ".changelog"
},
"command": {
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-explore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"homepage": "https://explore.veramo.dev",
"repository": {
"type": "git",
"url": "https://github.com/veramolabs/agent-explorer.git",
"url": "https://github.com/decentralized-identity/agent-explorer.git",
"directory": "packages/agent-explore"
},
"author": "Simonas Karuzas <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Agent explorer types",
"repository": {
"type": "git",
"url": "https://github.com/veramolabs/agent-explorer.git",
"url": "https://github.com/decentralized-identity/agent-explorer.git",
"directory": "packages/plugin"
},
"author": "Simonas Karuzas <[email protected]>",
Expand Down
Loading