Skip to content

Commit 5bdcf64

Browse files
committed
Update links and branches
1 parent 3755f0c commit 5bdcf64

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

.github/workflows/main-docker.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
- "**.md"
77
branches:
88
- 'main'
9-
- 'master'
109

1110
jobs:
1211
build-docker:

.github/workflows/main-rust.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77

88
branches:
99
- 'main'
10-
- 'master'
1110

1211
release:
1312
types: [published]
@@ -62,7 +61,7 @@ jobs:
6261

6362
- name: Release
6463
uses: softprops/action-gh-release@v1
65-
if: github.base_ref != 'master' && github.event_name == 'release'
64+
if: github.base_ref != 'main' && github.event_name == 'release'
6665
with:
6766
tag_name: ${{ steps.version.outputs.VERSION }}
6867
name: ${{ steps.version.outputs.VERSION }} - ${{ github.event.head_commit.message }}

.github/workflows/pull-request.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ on:
88
push:
99
branches:
1010
- 'main'
11-
- 'master'
1211

1312
pull_request:
1413
branches:
1514
- 'main'
16-
- 'master'
1715

1816
jobs:
1917
test:

.replit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
run = "while :; do set -ex; nix-env -iA nixpkgs.unzip; curl -o./redlib.zip -fsSL -- https://nightly.link/redlib-org/redlib/workflows/main-rust/master/redlib.zip; unzip -n redlib.zip; mv target/x86_64-unknown-linux-gnu/release/redlib .; chmod +x redlib; set +e; ./redlib -H 63115200; sleep 1; done"
1+
run = "while :; do set -ex; nix-env -iA nixpkgs.unzip; curl -o./redlib.zip -fsSL -- https://nightly.link/redlib-org/redlib/workflows/main-rust/main/redlib.zip; unzip -n redlib.zip; mv target/x86_64-unknown-linux-gnu/release/redlib .; chmod +x redlib; set +e; ./redlib -H 63115200; sleep 1; done"
22
language = "bash"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ I appreciate any donations! Your support allows me to continue developing Redlib
3434

3535
🔗 **Want to automatically redirect Reddit links to Redlib? Use [LibRedirect](https://github.com/libredirect/libredirect) or [Privacy Redirect](https://github.com/SimonBrazell/privacy-redirect)!**
3636

37-
[Follow this link](https://github.com/libreddit/libreddit-instances/blob/master/instances.md) for an up-to-date table of instances in Markdown format. This list is also available as [a machine-readable JSON](https://github.com/libreddit/libreddit-instances/blob/master/instances.json).
37+
[Follow this link](https://github.com/redlib-org/redlib-instances/blob/main/instances.md) for an up-to-date table of instances in Markdown format. This list is also available as [a machine-readable JSON](https://github.com/redlib-org/redlib-instances/blob/main/instances.json).
3838

39-
Both files are part of the [libreddit-instances](https://github.com/libreddit/libreddit-instances) repository. To contribute your [self-hosted instance](#deployment) to the list, see the [libreddit-instances README](https://github.com/libreddit/libreddit-instances/blob/master/README.md).
39+
Both files are part of the [libreddit-instances](https://github.com/redlib-org/redlib-instances) repository. To contribute your [self-hosted instance](#deployment) to the list, see the [libreddit-instances README](https://github.com/redlib-org/redlib-instances/blob/main/README.md).
4040

4141
---
4242

scripts/gen-credits.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
set -o pipefail
1010

1111
cd "$(dirname "${BASH_SOURCE[0]}")/../" || exit 1
12-
git --no-pager log --pretty='%an <%ae>%n%cn <%ce>' master \
12+
git --no-pager log --pretty='%an <%ae>%n%cn <%ce>' main \
1313
| sort -t'<' -u -k1,1 -k2,2 \
1414
| grep -Fv -- 'GitHub <[email protected]>' \
1515
> CREDITS

0 commit comments

Comments
 (0)