diff --git a/.github/workflows/build-test-publish-on-push.yml b/.github/workflows/build-test-publish-on-push.yml index 2f691b1..098f487 100644 --- a/.github/workflows/build-test-publish-on-push.yml +++ b/.github/workflows/build-test-publish-on-push.yml @@ -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 diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index c86c75f..cc09718 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -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 }} diff --git a/README.md b/README.md index fc09b1b..977538c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lerna.json b/lerna.json index 827a35c..13f9c3d 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "version": "1.72.0", "npmClient": "pnpm", "changelog": { - "repo": "veramolabs/agent-explorer", + "repo": "decentralized-identity/agent-explorer", "cacheDir": ".changelog" }, "command": { diff --git a/packages/agent-explore/package.json b/packages/agent-explore/package.json index a2747db..ae1ba1e 100644 --- a/packages/agent-explore/package.json +++ b/packages/agent-explore/package.json @@ -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 ", diff --git a/packages/plugin/package.json b/packages/plugin/package.json index a162a3d..21ff04c 100644 --- a/packages/plugin/package.json +++ b/packages/plugin/package.json @@ -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 ",