From 20d783b262bb8d30c499a40bd0aba64ee8d4d3b2 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Thu, 13 Aug 2026 21:28:13 -0400 Subject: [PATCH 1/2] Point everything at the pelican org instead of pelican-dev --- .github/workflows/lint.yml | 2 +- CONTRIBUTING.md | 4 ++-- subdomains/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index addd254e..e022240a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v6 - name: Clone Pelican Panel - run: git clone --depth=1 https://github.com/pelican-dev/panel pelican + run: git clone --depth=1 https://github.com/pelican/panel pelican - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e091ffd9..c4388c4d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ To start contributing you need to have a basic understanding of the following: You can find detailed information on how plugins work in [our documentation](https://pelican.dev/docs/panel/advanced/plugins#create-a-plugin). -For information on setting up a panel dev environment, see the [contributing guide in the panel repo](https://github.com/pelican-dev/panel/blob/main/contributing.md#dev-environment-setup). +For information on setting up a panel dev environment, see the [contributing guide in the panel repo](https://github.com/pelican/panel/blob/main/contributing.md#dev-environment-setup). ## Coding Standards @@ -31,4 +31,4 @@ Also, please make sure that your pull requests are as targeted and simple as pos ## Community and Support * Help: [Discord](https://discord.gg/pelican-panel) -* Bugs & Features: [GitHub Issues](https://github.com/pelican-dev/plugins/issues) +* Bugs & Features: [GitHub Issues](https://github.com/pelican/plugins/issues) diff --git a/subdomains/README.md b/subdomains/README.md index f2aa321f..03f5edc5 100644 --- a/subdomains/README.md +++ b/subdomains/README.md @@ -16,4 +16,4 @@ Note: You can't create subdomains for servers with `0.0.0.0` or `::` as allocati In order to create SRV records instead of A/AAAA you need to do the following: 1. Set a `SRV target` for the node -2. Add a [SRV service type](https://github.com/pelican-dev/plugins/blob/main/subdomains/src/Enums/SRVServiceType.php#L10-L15) to the features of the egg. The format is `srv-` and then the service name, e.g. `srv-minecraft` or `srv-rust`. +2. Add a [SRV service type](https://github.com/pelican/plugins/blob/main/subdomains/src/Enums/SRVServiceType.php#L10-L15) to the features of the egg. The format is `srv-` and then the service name, e.g. `srv-minecraft` or `srv-rust`. From 3bbc745b2598659194b4cd436c700b593205b0df Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Fri, 14 Aug 2026 19:47:37 -0400 Subject: [PATCH 2/2] Let CI fall back to the old panel URL while the move is in progress Means this can go in now instead of waiting, and the fallback can come out once it's no longer doing anything. --- .github/workflows/lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e022240a..fba2c2aa 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -44,7 +44,9 @@ jobs: uses: actions/checkout@v6 - name: Clone Pelican Panel - run: git clone --depth=1 https://github.com/pelican/panel pelican + run: | + git clone --depth=1 https://github.com/pelican/panel pelican \ + || git clone --depth=1 https://github.com/pelican-dev/panel pelican - name: Setup PHP uses: shivammathur/setup-php@v2