From c7f23cc2936c604a13c1d46e2a958b3a1f47208e Mon Sep 17 00:00:00 2001 From: Will Date: Sat, 2 Apr 2022 17:00:18 +1300 Subject: [PATCH] Rename "wilmol" -> "will-molloy" (#2) --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 07b8ab4..d3cef61 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,14 @@ Runs https://github.com/google/copybara in GitHub Actions. Copybara transforms and moves code between repositories. ## Usage -Specify `wilmol/copybara-action@v1` as a `step` in your `workflow.yml` file, for example: +Specify `will-molloy/copybara-action@v1` as a `step` in your `workflow.yml` file, for example: ``` steps: - uses: actions/checkout@v1 - - uses: wilmol/copybara-action@v1 + - uses: will-molloy/copybara-action@v1 with: - git_name: wilmol + git_name: will-molloy git_email: willjoemolloy@gmail.com ssh_key: ${{ secrets.SSH_KEY }} ssh_known_hosts: ${{ secrets.KNOWN_HOSTS }} @@ -19,12 +19,12 @@ steps: __Note,__ internally the action runs docker (specifically [this image](https://hub.docker.com/r/sharelatex/copybara)) so the step must run on Linux. ## Arguments -| Input | Description | Usage | -| :---: | :---: | :---: | -| `git_name` | git config username, for authoring with Copybara | _required_ | -| `git_email` | git config email, for authoring with Copybara | _required_ | -| `ssh_key` | ssh public key, for authenticating with Copybara | _required_ | -| `ssh_known_hosts` | ssh known hosts file contents, for authenticating with Copybara | _required_ | -| `path` | `copy.bara.sky` file path | optional (defaults to repo root) | +| Input | Description | Usage | +|:-----------------:|:---------------------------------------------------------------:|:--------------------------------:| +| `git_name` | git config username, for authoring with Copybara | _required_ | +| `git_email` | git config email, for authoring with Copybara | _required_ | +| `ssh_key` | ssh public key, for authenticating with Copybara | _required_ | +| `ssh_known_hosts` | ssh known hosts file contents, for authenticating with Copybara | _required_ | +| `path` | `copy.bara.sky` file path | optional (defaults to repo root) | See https://github.com/google/copybara for more details, specifically [Using Docker to build and run Copybara](https://github.com/google/copybara#using-docker-to-build-and-run-copybara).