You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@
24
24
## Readme
25
25
26
26
If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit.
27
-
Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-unifi-controller/edit/master/readme-vars.yml).
27
+
Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-unifi-controller/edit/mongoless/readme-vars.yml).
28
28
29
29
These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play.
30
30
Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io/images/docker-unifi-controller)
@@ -115,7 +115,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
115
115
116
116
## Update the changelog
117
117
118
-
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-unifi-controller/tree/master/root), add an entry to the changelog
118
+
If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-unifi-controller/tree/mongoless/root), add an entry to the changelog
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
22
22
------------------------------
23
23
24
-
-[ ] I have read the [contributing](https://github.com/linuxserver/docker-unifi-controller/blob/master/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications
24
+
-[ ] I have read the [contributing](https://github.com/linuxserver/docker-unifi-controller/blob/mongoless/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications
Copy file name to clipboardExpand all lines: .github/workflows/external_trigger.yml
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,24 @@ on:
4
4
workflow_dispatch:
5
5
6
6
jobs:
7
-
external-trigger-master:
7
+
external-trigger-mongoless:
8
8
runs-on: ubuntu-latest
9
9
steps:
10
10
- uses: actions/checkout@v3.1.0
11
11
12
12
- name: External Trigger
13
-
if: github.ref == 'refs/heads/master'
13
+
if: github.ref == 'refs/heads/mongoless'
14
14
run: |
15
-
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_UNIFI_CONTROLLER_MASTER }}" ]; then
16
-
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_UNIFI_CONTROLLER_MASTER is set; skipping trigger. ****"
15
+
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_UNIFI_CONTROLLER_MONGOLESS }}" ]; then
16
+
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_UNIFI_CONTROLLER_MONGOLESS is set; skipping trigger. ****"
17
17
exit 0
18
18
fi
19
-
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_UNIFI_CONTROLLER_MASTER\". ****"
19
+
echo "**** External trigger running off of mongoless branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_UNIFI_CONTROLLER_MONGOLESS\". ****"
Copy file name to clipboardExpand all lines: .github/workflows/greetings.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,5 +9,5 @@ jobs:
9
9
- uses: actions/first-interaction@v1
10
10
with:
11
11
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12
-
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-unifi-controller/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
12
+
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-unifi-controller/blob/mongoless/.github/PULL_REQUEST_TEMPLATE.md)!'
Copy file name to clipboardExpand all lines: .github/workflows/package_trigger.yml
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -4,25 +4,25 @@ on:
4
4
workflow_dispatch:
5
5
6
6
jobs:
7
-
package-trigger-master:
7
+
package-trigger-mongoless:
8
8
runs-on: ubuntu-latest
9
9
steps:
10
10
- uses: actions/checkout@v3.1.0
11
11
12
12
- name: Package Trigger
13
-
if: github.ref == 'refs/heads/master'
13
+
if: github.ref == 'refs/heads/mongoless'
14
14
run: |
15
-
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_UNIFI_CONTROLLER_MASTER }}" ]; then
16
-
echo "**** Github secret PAUSE_PACKAGE_TRIGGER_UNIFI_CONTROLLER_MASTER is set; skipping trigger. ****"
15
+
if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_UNIFI_CONTROLLER_MONGOLESS }}" ]; then
16
+
echo "**** Github secret PAUSE_PACKAGE_TRIGGER_UNIFI_CONTROLLER_MONGOLESS is set; skipping trigger. ****"
17
17
exit 0
18
18
fi
19
-
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-unifi-controller/job/master/lastBuild/api/json | jq -r '.building') == "true" ]; then
19
+
if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-unifi-controller/job/mongoless/lastBuild/api/json | jq -r '.building') == "true" ]; then
20
20
echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****"
21
21
exit 0
22
22
fi
23
-
echo "**** Package trigger running off of master branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_UNIFI_CONTROLLER_MASTER\". ****"
23
+
echo "**** Package trigger running off of mongoless branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_UNIFI_CONTROLLER_MONGOLESS\". ****"
0 commit comments