Skip to content

Commit d2ceaff

Browse files
authored
Switch references from sourcegraph/scip to scip-code/scip (#377)
1 parent 4aae55f commit d2ceaff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+73
-73
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
exit 0
5151
fi
5252
{
53-
echo "See the [CHANGELOG](https://github.com/sourcegraph/scip/blob/main/CHANGELOG.md) to see what's new in scip $TAG."
53+
echo "See the [CHANGELOG](https://github.com/scip-code/scip/blob/main/CHANGELOG.md) to see what's new in scip $TAG."
5454
echo ''
5555
echo 'Download the CLI for your current platform using:'
5656
echo ''
@@ -59,7 +59,7 @@ jobs:
5959
echo " TAG=\"$TAG\" \\"
6060
echo ' OS="$(uname -s | tr '"'"'[:upper:]'"'"' '"'"'[:lower:]'"'"')" \'
6161
echo ' ARCH="$(uname -m | sed -e '"'"'s/x86_64/amd64/'"'"')" \'
62-
echo ' bash -c '"'"'curl -L "https://github.com/sourcegraph/scip/releases/download/$TAG/scip-$OS-$ARCH.tar.gz"'"'"' \'
62+
echo ' bash -c '"'"'curl -L "https://github.com/scip-code/scip/releases/download/$TAG/scip-$OS-$ARCH.tar.gz"'"'"' \'
6363
echo '| tar xzf - scip'
6464
echo '```'
6565
} | gh release create "$TAG" --title "scip $TAG" --notes-file -

.github/workflows/scip-examples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010

1111
jobs:
1212
index:
13-
if: github.repository == 'sourcegraph/scip' # Skip running on forks
13+
if: github.repository == 'scip-code/scip' # Skip running on forks
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 30
1616

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ check out our documentation on
2323
Also, check out the [Debugging section][] in the Development docs.
2424

2525
If you're interested in consuming SCIP data,
26-
you can either use one of the [provided language bindings](https://github.com/sourcegraph/scip/tree/main/bindings),
26+
you can either use one of the [provided language bindings](https://github.com/scip-code/scip/tree/main/bindings),
2727
or generate code for the [SCIP Protobuf schema](./scip.proto)
2828
using the Protobuf toolchain for your language ecosystem.
2929
Also, check out the [Debugging section][] in the Development docs.
@@ -52,11 +52,11 @@ and the SCIP CLI in this repo.
5252

5353
## Installing the `scip` CLI
5454

55-
You can find binaries for the `scip` CLI tool [here](https://github.com/sourcegraph/scip/releases).
55+
You can find binaries for the `scip` CLI tool [here](https://github.com/scip-code/scip/releases).
5656
You can also compile a binary locally using:
5757

5858
```sh
59-
git clone https://github.com/sourcegraph/scip.git --depth=1
59+
git clone https://github.com/scip-code/scip.git --depth=1
6060
cd scip
6161
go build ./cmd/scip
6262
```

bindings/go/scip/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sourcegraph/scip/bindings/go/scip
1+
module github.com/scip-code/scip/bindings/go/scip
22

33
go 1.25.0
44

bindings/go/scip/memtest/low_mem_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"github.com/stretchr/testify/require"
1616
"google.golang.org/protobuf/proto"
1717

18-
"github.com/sourcegraph/scip/bindings/go/scip"
18+
"github.com/scip-code/scip/bindings/go/scip"
1919
)
2020

2121
// Do not add any other tests in this sub-package, so that the

bindings/go/scip/scip.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/go/scip/testutil/format.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sort"
1111
"strings"
1212

13-
"github.com/sourcegraph/scip/bindings/go/scip"
13+
"github.com/scip-code/scip/bindings/go/scip"
1414
)
1515

1616
// FormatSnapshots renders the provided SCIP index into a pretty-printed text format

bindings/go/scip/testutil/snapshot_testing.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/hexops/gotextdiff/span"
1313
"github.com/stretchr/testify/require"
1414

15-
"github.com/sourcegraph/scip/bindings/go/scip"
15+
"github.com/scip-code/scip/bindings/go/scip"
1616
)
1717

1818
var updateSnapshots = flag.Bool("update-snapshots", false, "update SCIP snapshots files")

bindings/go/scip/testutil/test_runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"github.com/fatih/color"
1414

15-
"github.com/sourcegraph/scip/bindings/go/scip"
15+
"github.com/scip-code/scip/bindings/go/scip"
1616
)
1717

1818
// RunTests validates whether the SCIP data present in an index matches that

bindings/haskell/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
[![CI](https://github.com/sourcegraph/scip/actions/workflows/haskell.yml/badge.svg)](https://github.com/sourcegraph/scip/actions/workflows/haskell.yml/badge.svg)
1+
[![CI](https://github.com/scip-code/scip/actions/workflows/haskell.yml/badge.svg)](https://github.com/scip-code/scip/actions/workflows/haskell.yml/badge.svg)
22

33
# Haskell bindings for SCIP
44

55
These bindings use [Google's proto-lens generator for Haskell](https://github.com/google/proto-lens).
66

77
Building: see the following workflow file for most up to date:
8-
https://github.com/sourcegraph/scip/blob/main/.github/workflows/haskell.yml
8+
https://github.com/scip-code/scip/blob/main/.github/workflows/haskell.yml
99

1010
First, get a working GHC environment:
1111

0 commit comments

Comments
 (0)