diff --git a/README.md b/README.md index 3b13d05..a60ce83 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ $ git config --global core.autocrlf false In the simple case all you need to do is to add this step to your job: ```yaml -- uses: mrkkrp/ormolu-action@v11 +- uses: haskell-actions/run-ormolu@v11 ``` However, if you are using a matrix, then it is more efficient to have a @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: mrkkrp/ormolu-action@v11 + - uses: haskell-actions/run-ormolu@v11 build: runs-on: ubuntu-latest needs: ormolu @@ -59,5 +59,5 @@ Here, the `build` job depends on `ormolu` and will not run unless `ormolu` passes. [ormolu]: https://github.com/tweag/ormolu -[multiple-patterns-example]: https://github.com/mrkkrp/ormolu-action/blob/master/action.yml#L9-L11 +[multiple-patterns-example]: https://github.com/haskell-actions/run-ormolu/blob/master/action.yml#L9-L11 [git-core-autocrlf]: https://www.git-scm.com/docs/git-config#Documentation/git-config.txt-coreautocrlf diff --git a/action.yml b/action.yml index b7f51dc..080f0f6 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: 'ormolu-action' +name: 'run-ormolu' description: 'Check formatting of Haskell code with Ormolu' inputs: pattern: diff --git a/package.json b/package.json index f93fbc5..99c17a5 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/mrkkrp/ormolu-action.git" + "url": "git+https://github.com/haskell-actions/run-ormolu.git" }, "keywords": [ "foramtter", @@ -29,7 +29,7 @@ "@vercel/ncc": "^0.24.0" }, "bugs": { - "url": "https://github.com/mrkkrp/ormolu-action/issues" + "url": "https://github.com/haskell-actions/run-ormolu/issues" }, - "homepage": "https://github.com/mrkkrp/ormolu-action#readme" + "homepage": "https://github.com/haskell-actions/run-ormolu#readme" }