Skip to content

Commit 0f7ea37

Browse files
authored
chore(*): promote add-on to official, fixes #5 (#6)
1 parent 1b8a663 commit 0f7ea37

File tree

7 files changed

+20
-12
lines changed

7 files changed

+20
-12
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Exclude files from releases/tarballs
2+
tests/ export-ignore
3+
.github/ export-ignore
4+
.gitattributes export-ignore

.github/FUNDING.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
```bash
1616
ddev add-on get ddev/ddev-redis
17-
ddev add-on get https://github.com/stasadev/ddev-redis-insight/tarball/refs/pull/REPLACE_ME_WITH_THIS_PR_NUMBER/head
17+
ddev add-on get https://github.com/ddev/ddev-redis-insight/tarball/refs/pull/REPLACE_ME_WITH_THIS_PR_NUMBER/head
1818
ddev restart
1919
```
2020

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
name: tests
22
on:
33
pull_request:
4+
paths-ignore:
5+
- "**.md"
46
push:
57
branches: [ main ]
8+
paths-ignore:
9+
- "**.md"
610

711
schedule:
8-
- cron: '25 08 * * *'
12+
- cron: '25 08 * * *'
913

1014
workflow_dispatch:
1115
inputs:

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![add-on registry](https://img.shields.io/badge/DDEV-Add--on_Registry-blue)](https://addons.ddev.com)
2-
[![tests](https://github.com/stasadev/ddev-redis-insight/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/stasadev/ddev-redis-insight/actions/workflows/tests.yml?query=branch%3Amain)
3-
[![last commit](https://img.shields.io/github/last-commit/stasadev/ddev-redis-insight)](https://github.com/stasadev/ddev-redis-insight/commits)
4-
[![release](https://img.shields.io/github/v/release/stasadev/ddev-redis-insight)](https://github.com/stasadev/ddev-redis-insight/releases/latest)
2+
[![tests](https://github.com/ddev/ddev-redis-insight/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/ddev/ddev-redis-insight/actions/workflows/tests.yml?query=branch%3Amain)
3+
[![last commit](https://img.shields.io/github/last-commit/ddev/ddev-redis-insight)](https://github.com/ddev/ddev-redis-insight/commits)
4+
[![release](https://img.shields.io/github/v/release/ddev/ddev-redis-insight)](https://github.com/ddev/ddev-redis-insight/releases/latest)
55

66
# DDEV Redis Insight
77

@@ -22,7 +22,7 @@ ddev add-on get ddev/ddev-redis
2222
## Installation
2323

2424
```bash
25-
ddev add-on get stasadev/ddev-redis-insight
25+
ddev add-on get ddev/ddev-redis-insight
2626
ddev restart
2727
```
2828

@@ -47,7 +47,7 @@ To change the Docker image:
4747

4848
```bash
4949
ddev dotenv set .ddev/.env.redis-insight --redis-insight-docker-image="redis/redisinsight:latest"
50-
ddev add-on get stasadev/ddev-redis-insight
50+
ddev add-on get ddev/ddev-redis-insight
5151
ddev restart
5252
```
5353

@@ -61,4 +61,6 @@ All customization options (use with caution):
6161

6262
## Credits
6363

64-
**Contributed and maintained by [@stasadev](https://github.com/stasadev)**
64+
**Contributed by [@stasadev](https://github.com/stasadev)**
65+
66+
**Maintained by the [DDEV team](https://ddev.com/support-ddev/) and [@julienloizelet](https://github.com/julienloizelet)**

install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project_files:
88
- docker-compose.redis-insight_norouter.yaml
99
- commands/host/redis-insight
1010

11-
ddev_version_constraint: '>= v1.24.3'
11+
ddev_version_constraint: '>= v1.24.10'
1212

1313
post_install_actions:
1414
- |

tests/test.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ setup() {
1616
set -eu -o pipefail
1717

1818
# Override this variable for your add-on:
19-
export GITHUB_REPO=stasadev/ddev-redis-insight
19+
export GITHUB_REPO=ddev/ddev-redis-insight
2020

2121
TEST_BREW_PREFIX="$(brew --prefix 2>/dev/null || true)"
2222
export BATS_LIB_PATH="${BATS_LIB_PATH}:${TEST_BREW_PREFIX}/lib:/usr/lib/bats"

0 commit comments

Comments
 (0)