Skip to content

Commit

Permalink
chore: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 committed Aug 28, 2024
1 parent 16ba0e1 commit 007a273
Show file tree
Hide file tree
Showing 7 changed files with 1,486 additions and 1,486 deletions.
2,944 changes: 1,472 additions & 1,472 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/advanced-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
fetch-depth: 0

- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
ssh_key: ${{ secrets.SSH_KEY }}
sot_repo: your/repo
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
with:
fetch-depth: 0
- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
access_token: ${{ secrets.GH_TOKEN }}
ssh_key: ${{ secrets.SSH_KEY }}
Expand All @@ -90,7 +90,7 @@ jobs:
with:
fetch-depth: 0
- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
access_token: ${{ secrets.GH_TOKEN }}
ssh_key: ${{ secrets.SSH_KEY }}
Expand All @@ -112,7 +112,7 @@ jobs:
move-code:
runs-on: ubuntu-latest
steps:
- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
ssh_key: ${{ secrets.SSH_KEY }}
workflow: pr
Expand Down
10 changes: 5 additions & 5 deletions docs/basic-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
fetch-depth: 0

- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
ssh_key: ${{ secrets.SSH_KEY }}
access_token: ${{ secrets.GH_TOKEN }}
Expand All @@ -60,7 +60,7 @@ jobs:
with:
fetch-depth: 0

- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
ssh_key: ${{ secrets.SSH_KEY }}
access_token: ${{ secrets.GH_TOKEN }}
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
with:
fetch-depth: 0
- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
ssh_key: ${{ secrets.SSH_KEY }}
access_token: ${{ secrets.GH_TOKEN }}
Expand All @@ -106,7 +106,7 @@ jobs:

### Complex structure

> You can experiment with our [playground repo template](https://github.com/olivr/copybara-playground) to try various scenarios before you implement it in your own repo.
> You can experiment with our [playground repo template](https://github.com/sudoblockio/copybara-playground) to try various scenarios before you implement it in your own repo.

Let's say you have a private monorepo with the following file structure:

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
with:
fetch-depth: 0
- uses: olivr/[email protected]
- uses: sudoblockio/[email protected]
with:
access_token: ${{ secrets.GH_TOKEN }}
ssh_key: ${{ secrets.SSH_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion docs/inputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
| workflow | | | Workflow to execute. Defaults to auto-detect (init / push / pr). |
| copybara_options | | | Use this, if you want to manually specify some command line options (space-separated). |
| ssh_known_hosts | | | SSH known hosts file contents, for authenticating with Copybara with another Git server. GitHub is always included by default. |
| copybara_image | | olivr/copybara | Copybara Docker image to run. |
| copybara_image | | sudoblockio/copybara | Copybara Docker image to run. |
| copybara_image_tag | | latest | Copybara Docker image tag to use. |
| pr_number | | | If you manually specified the 'pr' workflow, you will need to specify the PR number as well. |
| create_repo | | yes | If the destination repo doesn't exist, it will be created (subject to enough permissions attached to the access token). |
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/olivr/copybara-action.git"
"url": "git+https://github.com/sudoblockio/copybara-action.git"
},
"keywords": [
"actions",
Expand Down
4 changes: 2 additions & 2 deletions src/exit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ export const exitCodes: {
type: "error",
},
52: {
msg: "Unexpected error running Copybara. Please open an issue on olivr/copybara-action.",
msg: "Unexpected error running Copybara. Please open an issue on sudoblockio/copybara-action.",
ns: "action",
type: "error",
},
53: {
msg: "Unexpected error. Please open an issue on olivr/copybara-action.",
msg: "Unexpected error. Please open an issue on sudoblockio/copybara-action.",
ns: "action",
type: "error",
},
Expand Down

0 comments on commit 007a273

Please sign in to comment.