Skip to content

Commit fc5a0a9

Browse files
authored
Merge pull request #11 from deepflowinc-oss/konn/rename-org-name
fix: Changes org name
2 parents 3ed2cf2 + 0aa876f commit fc5a0a9

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ If you use VSCode, it is recommended to install the following extensions (as inc
3232
All the source code (except `Setup.hs`) MUST be formatted with [Fourmolu][fourmolu].
3333
HLS supports fourmolu as a formatter, so we strongly recommend to use HLS and enable `Format on Save` in your editor.
3434

35-
[issue]: https://github.com/deepflowinc/guardian/issues
36-
[pulls]: https://github.com/deepflowinc/guardian/pulls
35+
[issue]: https://github.com/deepflowinc-oss/guardian/issues
36+
[pulls]: https://github.com/deepflowinc-oss/guardian/pulls
3737
[splice-issue]: https://gitlab.haskell.org/ghc/ghc/-/issues/20266
3838
[fourmolu]: https://github.com/fourmolu/fourmolu
3939
[HLS]: https://github.com/haskell/haskell-language-server

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# guardian - The border guardian for your package dependencies
22

3-
[![Build & Test](https://github.com/deepflowinc/guardian/actions/workflows/haskell.yml/badge.svg)](https://github.com/deepflowinc/guardian/actions/workflows/haskell.yml)
3+
[![Build & Test](https://github.com/deepflowinc-oss/guardian/actions/workflows/haskell.yml/badge.svg)](https://github.com/deepflowinc-oss/guardian/actions/workflows/haskell.yml)
44
![Hackage](https://img.shields.io/hackage/v/guardian)
55

66
Guardian enforces dependency boundary constraints and keeps your project dependencies sane.
@@ -278,14 +278,14 @@ There are several possibilities in the design of actual DAG of domains, we recom
278278

279279
## Installation
280280

281-
You can download prebuilt binaries for macOS and Linux from [Release](https://github.com/deepflowinc/guardian/releases/latest).
281+
You can download prebuilt binaries for macOS and Linux from [Release](https://github.com/deepflowinc-oss/guardian/releases/latest).
282282

283283
You can also use [GitHub Action](#github-actions) in your CI.
284284

285285
To build from source, we recommend using `cabal-install >= 3.8`:
286286

287287
```sh
288-
git clone git@github.com/deepflowinc/guardian.git
288+
git clone git@github.com/deepflowinc-oss/guardian.git
289289
cd guardian
290290
cabal install
291291
```
@@ -586,7 +586,7 @@ Example workflow:
586586
- uses: haskell-actions/setup@v2
587587
with:
588588
ghc-version: 9.0.2 # Install needed version of ghc
589-
- uses: deepflowinc/guardian/action@v0.4.0.0
589+
- uses: deepflowinc-oss/guardian/action@v0.4.0.0
590590
name: Check with guardian
591591
with:
592592
backend: cabal # auto, cabal, or stack; auto if omitted

action/download-guardian.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ case "${UNAME}" in
3131
esac
3232

3333
if [ "${RELEASE}" = "latest" ]; then
34-
PAYLOAD=$(curl https://api.github.com/repos/deepflowinc/guardian/releases/latest)
34+
PAYLOAD=$(curl https://api.github.com/repos/deepflowinc-oss/guardian/releases/latest)
3535
else
36-
PAYLOAD=$(curl "https://api.github.com/repos/deepflowinc/guardian/releases/tags/v${RELEASE}")
36+
PAYLOAD=$(curl "https://api.github.com/repos/deepflowinc-oss/guardian/releases/tags/v${RELEASE}")
3737
fi
3838

3939
if RELEASE="$(echo "${PAYLOAD}" | jq -r ".name")"; then

guardian.cabal

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
cabal-version: 2.2
22

3-
-- This file has been generated from package.yaml by hpack version 0.35.0.
3+
-- This file has been generated from package.yaml by hpack version 0.36.0.
44
--
55
-- see: https://github.com/sol/hpack
66

77
name: guardian
88
version: 0.5.0.0
99
synopsis: The border guardian for your package dependencies
10-
description: Guardian secures your Haskell monorepo package dependency boundary. Please read [README.md](https://github.com/deepflowinc/guardian#readme) for more details.
10+
description: Guardian secures your Haskell monorepo package dependency boundary. Please read [README.md](https://github.com/deepflowinc-oss/guardian#readme) for more details.
1111
category: Development
12-
homepage: https://github.com/deepflowinc/guardian#readme
13-
bug-reports: https://github.com/deepflowinc/guardian/issues
12+
homepage: https://github.com/deepflowinc-oss/guardian#readme
13+
bug-reports: https://github.com/deepflowinc-oss/guardian/issues
1414
author: DeepFlow, Inc.
1515
maintainer: DeepFlow, Inc.
1616
copyright: (c) 2021-2023, DeepFlow, Inc.
@@ -24,7 +24,7 @@ data-dir: data
2424

2525
source-repository head
2626
type: git
27-
location: https://github.com/deepflowinc/guardian
27+
location: https://github.com/deepflowinc-oss/guardian
2828

2929
flag cabal
3030
description: Enables Cabal adapter

package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ license: BSD-3-Clause
44
author: "DeepFlow, Inc."
55
maintainer: "DeepFlow, Inc."
66
copyright: "(c) 2021-2023, DeepFlow, Inc."
7-
github: deepflowinc/guardian
7+
github: deepflowinc-oss/guardian
88

99
extra-source-files:
1010
- README.md
@@ -16,7 +16,7 @@ category: Development
1616

1717
description:
1818
Guardian secures your Haskell monorepo package dependency boundary.
19-
Please read [README.md](https://github.com/deepflowinc/guardian#readme) for more details.
19+
Please read [README.md](https://github.com/deepflowinc-oss/guardian#readme) for more details.
2020

2121
flags:
2222
cabal:

0 commit comments

Comments
 (0)