Skip to content

Commit

Permalink
Update org to get-woke
Browse files Browse the repository at this point in the history
  • Loading branch information
caitlinelfring committed Aug 31, 2020
1 parent 2e5f468 commit be722ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# woke-action

[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/caitlinelfring/woke-action?logo=github&sort=semver)](https://github.com/caitlinelfring/woke-action/releases)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/get-woke/woke-action?logo=github&sort=semver)](https://github.com/get-woke/woke-action/releases)

Woke GitHub Actions allow you to execute [`woke`](https://github.com/caitlinelfring/woke) command within GitHub Actions.
Woke GitHub Actions allow you to execute [`woke`](https://github.com/get-woke/woke) command within GitHub Actions.

The output of the actions can be viewed from the Actions tab in the main repository view.

Expand All @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@master

- name: 'woke'
uses: caitlinelfring/woke-action@v0
uses: get-woke/woke-action@v0
with:
# Cause the check to fail on any broke rules
fail_on_error: true
Expand All @@ -35,7 +35,7 @@ Inputs to configure the `woke` GitHub Actions.

| Input | Default | Description |
|------------------|-----------------------|---------------------------------------------------------------------------------------------------|
| `woke_args` | `.` | (Optional) Additional flags to run woke with (see <https://github.com/caitlinelfring/woke#usage>) |
| `woke_args` | `.` | (Optional) Additional flags to run woke with (see <https://github.com/get-woke/woke#usage>) |
| `woke_version` | latest | (Optional) Release version of `woke` (defaults to latest version) |
| `fail_on_error` | `false` | (Optional) Fail the GitHub Actions check for any failures. |
| `workdir` | `.` | (Optional) Run `woke` this working directory relative to the root directory. |
Expand All @@ -44,4 +44,4 @@ Inputs to configure the `woke` GitHub Actions.
## License

This application is licensed under the MIT License, you may obtain a copy of it
[here](https://github.com/caitlinelfring/woke-action-reviewdog/blob/main/LICENSE).
[here](https://github.com/get-woke/woke-action/blob/main/LICENSE).
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ cd "${GITHUB_WORKSPACE}/${INPUT_WORKDIR}" || exit 1
TEMP_PATH="$(mktemp -d)"
PATH="${TEMP_PATH}:$PATH"

echo '::group:: Installing woke ... https://github.com/caitlinelfring/woke'
curl -sfL https://raw.githubusercontent.com/caitlinelfring/woke/main/install.sh | sh -s -- -b "${TEMP_PATH}" "${INPUT_WOKE_VERSION}" 2>&1
echo '::group:: Installing woke ... https://github.com/get-woke/woke'
curl -sfL https://raw.githubusercontent.com/get-woke/woke/main/install.sh | sh -s -- -b "${TEMP_PATH}" "${INPUT_WOKE_VERSION}" 2>&1
echo '::endgroup::'

echo '::group:: Running woke ...'
Expand Down

0 comments on commit be722ac

Please sign in to comment.