Skip to content

Commit ef2ae86

Browse files
fix: Removed references to Atala in docs and variables referred to by docs (#172)
Co-authored-by: Pete Vielhaber <[email protected]>
1 parent 1707513 commit ef2ae86

File tree

7 files changed

+18
-20
lines changed

7 files changed

+18
-20
lines changed

.github/workflows/pr-title-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
steps:
1212
- uses: amannn/action-semantic-pull-request@v5
1313
env:
14-
GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }}
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pull-request.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ concurrency:
1212

1313
env:
1414
JAVA_VERSION: 17
15-
ATALA_GITHUB_ACTOR: ${{ secrets.ATALA_GITHUB_ACTOR }}
16-
ATALA_GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }}
15+
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717

1818
on:
1919
pull_request:
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@v4
3939
with:
4040
submodules: recursive
41-
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
41+
token: ${{ secrets.GITHUB_TOKEN }}
4242
fetch-depth: 0
4343

4444
- name: "Install Java ${{ env.JAVA_VERSION }}"
@@ -139,7 +139,7 @@ jobs:
139139
uses: mi-kas/kover-report@v1
140140
with:
141141
path: ${{ github.workspace }}/apollo/build/reports/kover/report.xml
142-
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
142+
token: ${{ secrets.GITHUB_TOKEN }}
143143
title: Code Coverage
144144
update-comment: true
145145
min-coverage-overall: 90

.github/workflows/release-documentation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ defaults:
88

99
env:
1010
JAVA_VERSION: 17
11-
ATALA_GITHUB_ACTOR: ${{ secrets.ATALA_GITHUB_ACTOR }}
12-
ATALA_GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }}
11+
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1313

1414
on:
1515
workflow_dispatch:
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v4
2626
with:
2727
submodules: recursive
28-
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
28+
token: ${{ secrets.GITHUB_TOKEN }}
2929
fetch-depth: 0
3030

3131
- name: "Validate Gradle Wrapper"

.github/workflows/release.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ concurrency:
1212

1313
env:
1414
JAVA_VERSION: 17
15-
ATALA_GITHUB_ACTOR: ${{ secrets.ATALA_GITHUB_ACTOR }}
16-
GITHUB_ACTOR: ${{ secrets.ATALA_GITHUB_ACTOR }}
17-
ATALA_GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }}
18-
GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }}
15+
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }}
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1917
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
20-
ATALA_NPM_TOKEN: ${{ secrets.ATALA_NPM_TOKEN }}
18+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2119

2220
on:
2321
workflow_dispatch:
@@ -30,7 +28,7 @@ jobs:
3028
uses: actions/checkout@v4
3129
with:
3230
submodules: recursive
33-
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
31+
token: ${{ secrets.GITHUB_TOKEN }}
3432
fetch-depth: 0
3533

3634
- name: "Install Java ${{ env.JAVA_VERSION }}"

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ and feel free to propose changes to this document in a pull request.
99
### Identus
1010

1111
Identus platform is a self-sovereign identity (SSI) platform and service suite for verifiable data and digital identity.
12-
Built on Cardano, it offers core infrastructure for issuing DIDs (Decentralized identifiers) and verifiable credentials,
13-
alongside tools and frameworks to help expand your ecosystem.
12+
Built on a distributed ledger, it offers core infrastructure for issuing DIDs (Decentralized identifiers) and
13+
verifiable credentials, alongside tools and frameworks to help expand your ecosystem.
1414
The complete platform is separated in multiple repositories:
1515

1616
* [Apollo](https://github.com/input-output-hk/atala-prism-apollo) - Repo for the Apollo Building Block, this contains

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ A cryptography lib built with Kotlin Multiplatform with support for the followin
2222

2323
### Set Environment Variables
2424

25-
Set variable `ATALA_GITHUB_ACTOR` with your GitHub Username and set variable `ATALA_GITHUB_TOKEN` with your GitHub Personal Access Token.
25+
Set variable `GITHUB_ACTOR` with your GitHub Username and set variable `GITHUB_TOKEN` with your GitHub Personal Access Token.
2626

2727
As an example we will go with `Bash`
2828

2929
1. Open CMD.
3030
2. Run `sudo nano $HOME/.bash_profile`.
31-
3. Insert `export ATALA_GITHUB_ACTOR="YOUR GITHUB USERNAME"`
32-
4. Insert `export ATALA_GITHUB_TOKEN="YOUR GITHUB PERSONAL ACCESS TOKEN"`
31+
3. Insert `export GITHUB_ACTOR="YOUR GITHUB USERNAME"`
32+
4. Insert `export GITHUB_TOKEN="YOUR GITHUB PERSONAL ACCESS TOKEN"`
3333
5. Save profile and restart CMD to take effect.
3434

3535
### Install Homebrew (Mac Only)

apollo/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ npmPublish {
828828
access.set(NpmAccess.PUBLIC)
829829
register("npmjs") {
830830
uri.set("https://registry.npmjs.org")
831-
authToken.set(System.getenv("ATALA_NPM_TOKEN"))
831+
authToken.set(System.getenv("NPM_TOKEN"))
832832
}
833833
}
834834
}

0 commit comments

Comments
 (0)