Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Changes org name #11

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ If you use VSCode, it is recommended to install the following extensions (as inc
All the source code (except `Setup.hs`) MUST be formatted with [Fourmolu][fourmolu].
HLS supports fourmolu as a formatter, so we strongly recommend to use HLS and enable `Format on Save` in your editor.

[issue]: https://github.com/deepflowinc/guardian/issues
[pulls]: https://github.com/deepflowinc/guardian/pulls
[issue]: https://github.com/deepflowinc-oss/guardian/issues
[pulls]: https://github.com/deepflowinc-oss/guardian/pulls
[splice-issue]: https://gitlab.haskell.org/ghc/ghc/-/issues/20266
[fourmolu]: https://github.com/fourmolu/fourmolu
[HLS]: https://github.com/haskell/haskell-language-server
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# guardian - The border guardian for your package dependencies

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

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

## Installation

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

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

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

```sh
git clone [email protected]/deepflowinc/guardian.git
git clone [email protected]/deepflowinc-oss/guardian.git
cd guardian
cabal install
```
Expand Down Expand Up @@ -586,7 +586,7 @@ Example workflow:
- uses: haskell-actions/setup@v2
with:
ghc-version: 9.0.2 # Install needed version of ghc
- uses: deepflowinc/guardian/[email protected]
- uses: deepflowinc-oss/guardian/[email protected]
name: Check with guardian
with:
backend: cabal # auto, cabal, or stack; auto if omitted
Expand Down
4 changes: 2 additions & 2 deletions action/download-guardian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ case "${UNAME}" in
esac

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

if RELEASE="$(echo "${PAYLOAD}" | jq -r ".name")"; then
Expand Down
10 changes: 5 additions & 5 deletions guardian.cabal
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
cabal-version: 2.2

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

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

source-repository head
type: git
location: https://github.com/deepflowinc/guardian
location: https://github.com/deepflowinc-oss/guardian

flag cabal
description: Enables Cabal adapter
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ license: BSD-3-Clause
author: "DeepFlow, Inc."
maintainer: "DeepFlow, Inc."
copyright: "(c) 2021-2023, DeepFlow, Inc."
github: deepflowinc/guardian
github: deepflowinc-oss/guardian

extra-source-files:
- README.md
Expand All @@ -16,7 +16,7 @@ category: Development

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

flags:
cabal:
Expand Down
Loading