Skip to content
This repository was archived by the owner on Feb 17, 2023. It is now read-only.

Commit 7f4581e

Browse files
committed
Deprecate bionic branch
1 parent 69a492f commit 7f4581e

File tree

8 files changed

+56
-3
lines changed

8 files changed

+56
-3
lines changed

.github/ISSUE_TEMPLATE/issue.bug.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: Bug report
33
about: Create a report to help us improve
44

55
---
6+
# DEPRECATION NOTICE
7+
8+
This image is deprecated. We will not offer support for this image and it will not be updated.
9+
We recommend our focal mono baseimage instead:
10+
https://github.com/linuxserver/docker-baseimage-mono
11+
612
[linuxserverurl]: https://linuxserver.io
713
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl]
814

.github/ISSUE_TEMPLATE/issue.feature.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: Feature request
33
about: Suggest an idea for this project
44

55
---
6+
# DEPRECATION NOTICE
7+
8+
This image is deprecated. We will not offer support for this image and it will not be updated.
9+
We recommend our focal mono baseimage instead:
10+
https://github.com/linuxserver/docker-baseimage-mono
11+
612
[linuxserverurl]: https://linuxserver.io
713
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl]
814

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# DEPRECATION NOTICE
2+
3+
This image is deprecated. We will not offer support for this image and it will not be updated.
4+
We recommend our focal mono baseimage instead:
5+
https://github.com/linuxserver/docker-baseimage-mono
6+
17
<!--- Provide a general summary of your changes in the Title above -->
28

39
[linuxserverurl]: https://linuxserver.io

.github/workflows/greetings.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
steps:
99
- uses: actions/first-interaction@v1
1010
with:
11-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!'
12-
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/.github/PULL_REQUEST_TEMPLATE.md)!'
11+
issue-message: 'This image is deprecated. We will not offer support for this image and it will not be updated. The [README](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/README.md) may have additional information. Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!'
12+
pr-message: 'This image is deprecated. We will not offer support for this image and it will not be updated. The [README](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/README.md) may have additional information. Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/.github/PULL_REQUEST_TEMPLATE.md)!'
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}

Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pipeline {
5656
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT
5757
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
5858
env.PULL_REQUEST = env.CHANGE_ID
59-
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml'
59+
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/etc/cont-init.d/99-deprecation'
6060
}
6161
script{
6262
env.LS_RELEASE_NUMBER = sh(
@@ -310,13 +310,15 @@ pipeline {
310310
cd ${TEMPDIR}/docker-${CONTAINER_NAME}
311311
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows
312312
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE
313+
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/root/etc/cont-init.d
313314
cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || :
314315
cd ${TEMPDIR}/repo/${LS_REPO}/
315316
if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then
316317
echo ".jenkins-external" >> .gitignore
317318
git add .gitignore
318319
fi
319320
git add ${TEMPLATED_FILES}
321+
git rm ${TEMPDIR}/repo/${LS_REPO}/.github/workflows/{external_trigger,external_trigger_scheduler,package_trigger,package_trigger_scheduler}.yml || :
320322
git commit -m 'Bot Updating Templated Files'
321323
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
322324
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
<!-- DO NOT EDIT THIS FILE MANUALLY -->
22
<!-- Please read the https://github.com/linuxserver/docker-baseimage-mono/blob/bionic/.github/CONTRIBUTING.md -->
33

4+
# DEPRECATION NOTICE
5+
6+
This image is deprecated. We will not offer support for this image and it will not be updated.
7+
We recommend our focal mono baseimage instead:
8+
https://github.com/linuxserver/docker-baseimage-mono
9+
410
[linuxserverurl]: https://linuxserver.io
511
[forumurl]: https://forum.linuxserver.io
612
[ircurl]: https://www.linuxserver.io/irc/

readme-vars.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# project information
44
project_name: baseimage-mono
5+
6+
project_deprecation_status: true
7+
project_deprecation_message: |
8+
We recommend our focal mono baseimage instead:
9+
https://github.com/linuxserver/docker-baseimage-mono
10+
511
full_custom_readme: |
612
{% raw -%}
713
[linuxserverurl]: https://linuxserver.io
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/with-contenv bash
2+
3+
echo '
4+
******************************************************
5+
******************************************************
6+
* *
7+
* *
8+
* This baseimage is deprecated. *
9+
* We will not offer support for this baseimage *
10+
* and it will not be updated. *
11+
* *
12+
* *
13+
******************************************************
14+
******************************************************
15+
16+
We recommend our focal mono baseimage instead:
17+
https://github.com/linuxserver/docker-baseimage-mono
18+
19+
20+
******************************************************
21+
******************************************************'

0 commit comments

Comments
 (0)