diff --git a/README.md b/README.md index 1cae11d..651cf48 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Fourmolu action -![CI](https://github.com/bitnomial/fourmolu-action/workflows/CI/badge.svg?branch=master) +![CI](https://github.com/fourmolu/fourmolu-action/workflows/CI/badge.svg?branch=master) This Fourmolu Action helps to ensure that your Haskell project is formatted with [Fourmolu][fourmolu]. The action tries to find all Haskell source @@ -13,12 +13,12 @@ and its formatted version. In the simple case all you need to do is to add this step to your job: ```yaml -- uses: bitnomial/fourmolu-action@v1 +- uses: fourmolu/fourmolu-action@v1 ``` The `@v1` after `fourmolu-action` should be replaced with the version of the Fourmolu Action you want to use. See -[Releases](https://github.com/bitnomial/fourmolu-action/releases) for all +[Releases](https://github.com/fourmolu/fourmolu-action/releases) for all versions available. Each version of the Fourmolu Action generally has a corresponding version of `fourmolu`. Make sure you pick a Fourmolu Action version that uses the version of `fourmolu` you use locally. @@ -26,7 +26,7 @@ version that uses the version of `fourmolu` you use locally. Here's a more complicated example that shows more options being used: ```yaml -- uses: bitnomial/fourmolu-action@v1 +- uses: fourmolu/fourmolu-action@v1 with: # Only check the format of .hs in the src/ directory. pattern: | @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: bitnomial/fourmolu-action@v6 + - uses: fourmolu/fourmolu-action@v1 build: runs-on: ubuntu-latest needs: fourmolu @@ -88,7 +88,7 @@ versions, but newer (or slightly older) versions may work as well: Next, clone this repo: ```console -$ git clone git@github.com:bitnomial/fourmolu-action.git +$ git clone git@github.com:fourmolu/fourmolu-action.git ``` Then, within this repo, install all dependencies defined in `package.json`: diff --git a/action.yml b/action.yml index da4723d..ada0336 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: 'fourmolu-action' +name: 'Run Fourmolu' description: 'Check formatting of Haskell code with Fourmolu' inputs: pattern: diff --git a/package.json b/package.json index f0666a1..5544df2 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/bitnomial/fourmolu-action.git" + "url": "git+https://github.com/fourmolu/fourmolu-action.git" }, "keywords": [ "foramtter", @@ -29,7 +29,7 @@ "@vercel/ncc": "^0.24.1" }, "bugs": { - "url": "https://github.com/bitnomial/fourmolu-action/issues" + "url": "https://github.com/fourmolu/fourmolu-action/issues" }, - "homepage": "https://github.com/bitnomial/fourmolu-action#readme" + "homepage": "https://github.com/fourmolu/fourmolu-action#readme" }