-
Notifications
You must be signed in to change notification settings - Fork 48
chore: rename repo to comply with logos #2757
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| * @waku-org/js-waku | ||
| * @logos-messaging/js-waku |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,5 +11,5 @@ jobs: | |
| steps: | ||
| - uses: actions/[email protected] | ||
| with: | ||
| project-url: https://github.com/orgs/waku-org/projects/2 | ||
| project-url: https://github.com/orgs/logos-messaging/projects/2 | ||
| github-token: ${{ secrets.ADD_TO_PROJECT_20240815 }} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,8 +13,8 @@ const Args = process.argv.slice(2); | |
| const USE_HTTPS = Args[0] && Args[0].toUpperCase() === "HTTPS"; | ||
|
|
||
| const branch = "gh-pages"; | ||
| const org = "waku-org"; | ||
| const repo = "js-waku"; | ||
| const org = "logos-messaging"; | ||
| const repo = "logos-messaging-js"; | ||
| /* use SSH auth by default */ | ||
| let repoUrl = USE_HTTPS | ||
| ? `https://github.com/${org}/${repo}.git` | ||
|
Comment on lines
15
to
20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The deploy script now pushes the generated docs to Useful? React with 👍 / 👎. |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CI jobs now override
actions/checkoutto pulllogos-messaging/logos-messaging-js, even though this repository (and the issue URL in the commit description) islogos-messaging/js-waku. When the workflow runs it will clone that other/nonexistent repo instead of the PR’s code, so subsequent build, test, and release steps won’t exercise the changes here and may fail outright if that repo is missing.Useful? React with 👍 / 👎.