Skip to content

Commit

Permalink
Update github repo references (#252)
Browse files Browse the repository at this point in the history
Update github repo reference from PegaSysEng to ConsenSys.

Signed-off-by: Usman Saleem <usman@usmans.info>
  • Loading branch information
usmansaleem authored Oct 12, 2020
1 parent 816b1e5 commit 1c73c0e
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .openapidoc/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Web3Signer OpenAPI Spec Publish

This directory contains NodeJS project which publishes Web3Signer OpenAPI specifications to
[`gh-pages`](https://github.com/PegaSysEng/web3signer/tree/gh-pages) branch via CI job after build and acceptanceTests.
[`gh-pages`](https://github.com/ConsenSys/web3signer/tree/gh-pages) branch via CI job after build and acceptanceTests.
See `publishOpenApiSpec` job in `.circleci/config.yml`.

## Prerequisite
Expand All @@ -19,7 +19,7 @@ The script performs following tasks:
For release version, it performs following additional steps (the release version do not have `-dev-` in it)

* Copy the spec to `dist` as `web3signer-<mode>-<version>.yaml`
* Fetch `https://github.com/PegaSysEng/web3signer/raw/gh-pages/versions.json`
* Fetch `https://github.com/ConsenSys/web3signer/raw/gh-pages/versions.json`
* Update versions' json with release versions by updating `stable.spec` and `stable.source` to the release version and adding a new entry
for it. For example after adding spec version `0.0.2`, the `versions.json` would look like:
~~~
Expand Down Expand Up @@ -48,7 +48,7 @@ npm module to automate this step.

## Environment variables
Following environment variables can be used to override defaults
* `OA_GIT_URL` (default: `git@github.com:PegaSysEng/web3signer.git`)
* `OA_GIT_URL` (default: `git@github.com:ConsenSys/web3signer.git`)
* `OA_GH_PAGES_BRANCH` (default: `gh-pages`)
* `OA_GIT_USERNAME` (default: `CircleCI Build`)
* `OA_GIT_EMAIL` (default: `ci-build@consensys.net`)
Expand Down
2 changes: 1 addition & 1 deletion .openapidoc/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const distDir = process.env.OA_DIST_DIR || "./dist";
const specDir =
process.env.OA_SPEC_DIR || "../core/build/resources/main/openapi";
const gitUrl =
process.env.OA_GIT_URL || "git@github.com:PegaSysEng/web3signer.git";
process.env.OA_GIT_URL || "git@github.com:ConsenSys/web3signer.git";
const gitUserName = process.env.OA_GIT_USERNAME || "CircleCI Build";
const gitEmail = process.env.OA_GIT_EMAIL || "ci-build@consensys.net";
const branch = process.env.OA_GH_PAGES_BRANCH || "gh-pages";
Expand Down
6 changes: 3 additions & 3 deletions .openapidoc/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "openapidoc",
"version": "1.0.0",
"description": "Prepare Web3Signer OpenAPI spec to be pusged to gh-pages branch",
"description": "Prepare Web3Signer OpenAPI spec to be pushed to gh-pages branch",
"repository": {
"type": "git",
"url": "git://github.com/PegaSysEng/web3signer.git"
"url": "git://github.com/ConsenSys/web3signer.git"
},
"bugs": {
"url": "https://github.com/PegaSysEng/web3signer/issues"
"url": "https://github.com/ConsenSys/web3signer/issues"
},
"main": "./publish.js",
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ This facilitates social contribution, easy testing, and peer review.

To contribute changes, use the following workflow:

1. [**Fork the repository**](https://github.com/PegaSysEng/web3signer/fork).
1. [**Fork the repository**](https://github.com/ConsenSys/web3signer/fork).
1. **Clone your fork** to your computer.
1. **Create a topic branch** and name it appropriately.
Starting the branch name with the issue number is a good practice and a reminder to fix only one issue in a
Expand Down Expand Up @@ -244,7 +244,7 @@ These are not strictly enforced during the build, but should be adhered to and c

[private-quorum@consensys.net]: mailto:private-quorum@consensys.net
[Discord]: https://discord.gg/KMh2Mjh
[GitHub]: https://github.com/PegaSysEng/web3signer
[GitHub]: https://github.com/ConsenSys/web3signer
[Web3Signer documentation]: https://doc.eth2signer.pegasys.tech/en/latest/
[CLA.md]: /CLA.md
[Code Reviews]: /community/code-reviews.md
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Web3Signer issues are tracked in GitHub.
See our [contribution guidelines](CONTRIBUTING.md) for more detail on searching and creating issues.

## API
* [API Documentation](https://pegasyseng.github.io/web3signer/)
* [API Documentation](https://consensys.github.io/web3signer/)

## Users
* [User documentation](https://docs.web3signer.consensys.net/)
Expand Down
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ def bintrayPackage = bintray.pkg {
name = 'web3signer'
userOrg = 'consensys'
licenses = ['Apache-2.0']
websiteUrl = 'https://github.com/PegaSysEng/web3signer'
issueTrackerUrl = 'https://github.com/PegaSysEng/web3signer/issues'
vcsUrl = 'https://github.com/PegaSysEng/web3signer.git'
websiteUrl = 'https://github.com/ConsenSys/web3signer'
issueTrackerUrl = 'https://github.com/ConsenSys/web3signer/issues'
vcsUrl = 'https://github.com/ConsenSys/web3signer.git'

version {
name = project.version
Expand Down Expand Up @@ -257,17 +257,17 @@ subprojects {
}
pom {
name = "web3signer - ${project.name}"
url = 'http://github.com/PegaSysEng/web3signer'
url = 'http://github.com/ConsenSys/web3signer'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
scm {
connection = 'scm:git:git://github.com/PegaSysEng/web3signer.git'
developerConnection = 'scm:git:ssh://github.com/PegaSysEng/web3signer.git'
url = 'https://github.com/PegaSysEng/web3signer'
connection = 'scm:git:git://github.com/ConsenSys/web3signer.git'
developerConnection = 'scm:git:ssh://github.com/ConsenSys/web3signer.git'
url = 'https://github.com/ConsenSys/web3signer'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.description="Ethereum2 artefact signing application" \
org.label-schema.url="https://docs.web3signer.pegasys.tech/" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/PegaSysEng/web3signer.git" \
org.label-schema.vcs-url="https://github.com/ConsenSys/web3signer.git" \
org.label-schema.vendor="Pegasys" \
org.label-schema.version=$VERSION \
org.label-schema.schema-version="1.0"

0 comments on commit 1c73c0e

Please sign in to comment.