File tree Expand file tree Collapse file tree 12 files changed +152
-105
lines changed Expand file tree Collapse file tree 12 files changed +152
-105
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Based on the issue template
2
+ name : Bug report
3
+ description : Create a report to help us improve
4
+ title : " [BUG] <title>"
5
+ labels : [Bug]
6
+ body :
7
+ - type : checkboxes
8
+ attributes :
9
+ label : Is there an existing issue for this?
10
+ description : Please search to see if an issue already exists for the bug you encountered.
11
+ options :
12
+ - label : I have searched the existing issues
13
+ required : true
14
+ - type : textarea
15
+ attributes :
16
+ label : Current Behavior
17
+ description : Tell us what happens instead of the expected behavior.
18
+ validations :
19
+ required : true
20
+ - type : textarea
21
+ attributes :
22
+ label : Expected Behavior
23
+ description : Tell us what should happen.
24
+ validations :
25
+ required : false
26
+ - type : textarea
27
+ attributes :
28
+ label : Steps To Reproduce
29
+ description : Steps to reproduce the behavior.
30
+ placeholder : |
31
+ 1. In this environment...
32
+ 2. With this config...
33
+ 3. Run '...'
34
+ 4. See error...
35
+ validations :
36
+ required : true
37
+ - type : textarea
38
+ attributes :
39
+ label : Environment
40
+ description : |
41
+ examples:
42
+ - **OS**: Ubuntu 20.04
43
+ - **How docker service was installed**: distro's packagemanager
44
+ value : |
45
+ - OS:
46
+ - How docker service was installed:
47
+ render : markdown
48
+ validations :
49
+ required : false
50
+ - type : dropdown
51
+ attributes :
52
+ label : CPU architecture
53
+ options :
54
+ - x86-64
55
+ - arm64
56
+ - armhf
57
+ validations :
58
+ required : true
59
+ - type : textarea
60
+ attributes :
61
+ label : Docker creation
62
+ description : |
63
+ Command used to create docker container
64
+ Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container
65
+ render : bash
66
+ validations :
67
+ required : true
68
+ - type : textarea
69
+ attributes :
70
+ description : |
71
+ Provide a full docker log, output of "docker logs linuxserver.io"
72
+ label : Container logs
73
+ placeholder : |
74
+ Output of `docker logs linuxserver.io`
75
+ render : bash
76
+ validations :
77
+ required : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Based on the issue template
2
+ name : Feature request
3
+ description : Suggest an idea for this project
4
+ title : " [FEAT] <title>"
5
+ labels : [enhancement]
6
+ body :
7
+ - type : checkboxes
8
+ attributes :
9
+ label : Is this a new feature request?
10
+ description : Please search to see if a feature request already exists.
11
+ options :
12
+ - label : I have searched the existing issues
13
+ required : true
14
+ - type : textarea
15
+ attributes :
16
+ label : Wanted change
17
+ description : Tell us what you want to happen.
18
+ validations :
19
+ required : true
20
+ - type : textarea
21
+ attributes :
22
+ label : Reason for change
23
+ description : Justify your request, why do you want it, what is the benefit.
24
+ validations :
25
+ required : true
26
+ - type : textarea
27
+ attributes :
28
+ label : Proposed code change
29
+ description : Do you have a potential code change in mind?
30
+ validations :
31
+ required : false
Original file line number Diff line number Diff line change 7
7
external-trigger-master :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2.3.3
10
+ - uses : actions/checkout@v3.1.0
11
11
12
12
- name : External Trigger
13
13
if : github.ref == 'refs/heads/master'
48
48
| jq -r '.config.digest')
49
49
image_info=$(curl -sL \
50
50
--header "Authorization: Bearer ${token}" \
51
- "https://ghcr.io/v2/${image}/blobs/${digest}" \
52
- | jq -r '.container_config')
51
+ "https://ghcr.io/v2/${image}/blobs/${digest}")
52
+ if [[ $(echo $image_info | jq -r '.container_config') == "null" ]]; then
53
+ image_info=$(echo $image_info | jq -r '.config')
54
+ else
55
+ image_info=$(echo $image_info | jq -r '.container_config')
56
+ fi
53
57
IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}')
54
58
IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}')
55
59
if [ -z "${IMAGE_VERSION}" ]; then
Original file line number Diff line number Diff line change 9
9
external-trigger-scheduler :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2.3.3
12
+ - uses : actions/checkout@v3.1.0
13
13
with :
14
14
fetch-depth : ' 0'
15
15
Original file line number Diff line number Diff line change 8
8
steps :
9
9
- uses : actions/first-interaction@v1
10
10
with :
11
- issue-message : ' Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md ) or [feature](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.feature.md ) issue templates!'
11
+ issue-message : ' Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.bug.yml ) or [feature](https://github.com/linuxserver/docker-bookstack/blob/master/.github/ISSUE_TEMPLATE/issue.feature.yml ) issue templates!'
12
12
pr-message : ' Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-bookstack/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!'
13
13
repo-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 7
7
package-trigger-master :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2.3.3
10
+ - uses : actions/checkout@v3.1.0
11
11
12
12
- name : Package Trigger
13
13
if : github.ref == 'refs/heads/master'
Original file line number Diff line number Diff line change 9
9
package-trigger-scheduler :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2.3.3
12
+ - uses : actions/checkout@v3.1.0
13
13
with :
14
14
fetch-depth : ' 0'
15
15
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
12
12
steps :
13
- - uses : actions/stale@v3
13
+ - uses : actions/stale@v6.0.1
14
14
with :
15
15
stale-issue-message : " This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
16
16
stale-pr-message : " This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ pipeline {
59
59
env. CODE_URL = ' https://github.com/' + env. LS_USER + ' /' + env. LS_REPO + ' /commit/' + env. GIT_COMMIT
60
60
env. DOCKERHUB_LINK = ' https://hub.docker.com/r/' + env. DOCKERHUB_IMAGE + ' /tags/'
61
61
env. PULL_REQUEST = env. CHANGE_ID
62
- 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'
62
+ env. TEMPLATED_FILES = ' Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.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'
63
63
}
64
64
script{
65
65
env. LS_RELEASE_NUMBER = sh(
@@ -287,7 +287,7 @@ pipeline {
287
287
echo "Jenkinsfile is up to date."
288
288
fi
289
289
# Stage 2 - Delete old templates
290
- OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md"
290
+ OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md\n .github/ISSUE_TEMPLATE/issue.bug.md \n .github/ISSUE_TEMPLATE/issue.feature.md "
291
291
for i in ${OLD_TEMPLATES}; do
292
292
if [[ -f "${i}" ]]; then
293
293
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ busybox-1.34.1-r7
11
11
ca-certificates-20220614-r0
12
12
ca-certificates-bundle-20220614-r0
13
13
coreutils-9.0-r2
14
- curl-7.80.0-r3
14
+ curl-7.80.0-r4
15
15
dbus-libs-1.12.24-r0
16
16
encodings-1.0.5-r0
17
- expat-2.4.9 -r0
17
+ expat-2.5.0 -r0
18
18
fontconfig-2.13.1-r4
19
19
freetype-2.11.1-r2
20
20
gdbm-1.22-r0
21
- git-2.34.4 -r0
21
+ git-2.34.5 -r0
22
22
glib-2.70.1-r0
23
23
icu-libs-69.1-r1
24
24
libacl-2.2.53-r0
@@ -27,8 +27,8 @@ libblkid-2.37.4-r0
27
27
libbsd-0.11.3-r1
28
28
libbz2-1.0.8-r1
29
29
libc-utils-0.7.2-r3
30
- libcrypto1.1-1.1.1q-r0
31
- libcurl-7.80.0-r3
30
+ libcrypto1.1-1.1.1s-r1
31
+ libcurl-7.80.0-r4
32
32
libedit-20210910.3.1-r0
33
33
libevent-2.1.12-r4
34
34
libffi-3.4.2-r1
@@ -48,16 +48,16 @@ libretls-3.3.4-r3
48
48
libsasl-2.1.28-r0
49
49
libseccomp-2.5.2-r0
50
50
libsm-1.2.3-r0
51
- libssl1.1-1.1.1q-r0
51
+ libssl1.1-1.1.1s-r1
52
52
libstdc++-10.3.1_git20211027-r0
53
53
libuuid-2.37.4-r0
54
54
libwebp-1.2.2-r0
55
- libx11-1.7.2 -r0
55
+ libx11-1.7.3.1 -r0
56
56
libxau-1.0.9-r0
57
57
libxcb-1.14-r2
58
58
libxdmcp-1.1.3-r0
59
59
libxext-1.3.4-r0
60
- libxml2-2.9.14-r1
60
+ libxml2-2.9.14-r2
61
61
libxmu-1.1.3-r0
62
62
libxpm-3.5.13-r0
63
63
libxt-1.2.1-r0
@@ -74,31 +74,31 @@ netcat-openbsd-1.130-r3
74
74
nghttp2-libs-1.46.0-r0
75
75
nginx-1.20.2-r1
76
76
oniguruma-6.9.7.1-r0
77
- openssl-1.1.1q-r0
77
+ openssl-1.1.1s-r1
78
78
pcre-8.45-r1
79
79
pcre2-10.40-r0
80
- php8-8.0.18 -r0
81
- php8-common-8.0.18 -r0
82
- php8-ctype-8.0.18 -r0
83
- php8-curl-8.0.18 -r0
84
- php8-dom-8.0.18 -r0
85
- php8-fileinfo-8.0.18 -r0
86
- php8-fpm-8.0.18 -r0
87
- php8-gd-8.0.18 -r0
88
- php8-ldap-8.0.18 -r0
89
- php8-mbstring-8.0.18 -r0
90
- php8-mysqlnd-8.0.18 -r0
91
- php8-openssl-8.0.18 -r0
92
- php8-pdo-8.0.18 -r0
93
- php8-pdo_mysql-8.0.18 -r0
80
+ php8-8.0.25 -r0
81
+ php8-common-8.0.25 -r0
82
+ php8-ctype-8.0.25 -r0
83
+ php8-curl-8.0.25 -r0
84
+ php8-dom-8.0.25 -r0
85
+ php8-fileinfo-8.0.25 -r0
86
+ php8-fpm-8.0.25 -r0
87
+ php8-gd-8.0.25 -r0
88
+ php8-ldap-8.0.25 -r0
89
+ php8-mbstring-8.0.25 -r0
90
+ php8-mysqlnd-8.0.25 -r0
91
+ php8-openssl-8.0.25 -r0
92
+ php8-pdo-8.0.25 -r0
93
+ php8-pdo_mysql-8.0.25 -r0
94
94
php8-pecl-igbinary-3.2.6-r0
95
95
php8-pecl-memcached-3.1.5-r1
96
- php8-phar-8.0.18 -r0
97
- php8-session-8.0.18 -r0
98
- php8-simplexml-8.0.18 -r0
99
- php8-tokenizer-8.0.18 -r0
100
- php8-xml-8.0.18 -r0
101
- php8-xmlwriter-8.0.18 -r0
96
+ php8-phar-8.0.25 -r0
97
+ php8-session-8.0.25 -r0
98
+ php8-simplexml-8.0.25 -r0
99
+ php8-tokenizer-8.0.25 -r0
100
+ php8-xml-8.0.25 -r0
101
+ php8-xmlwriter-8.0.25 -r0
102
102
popt-1.18-r0
103
103
procps-3.3.17-r0
104
104
qt5-qtbase-5.15.3_git20210713-r5
@@ -110,7 +110,7 @@ skalibs-2.11.0.0-r0
110
110
ssl_client-1.34.1-r7
111
111
tar-1.34-r0
112
112
ttf-freefont-20120503-r2
113
- tzdata-2022c-r0
113
+ tzdata-2022f-r1
114
114
utmps-0.1.0.3-r0
115
115
xdg-utils-1.1.3-r0
116
116
xprop-1.2.5-r0
You can’t perform that action at this time.
0 commit comments