forked from Ivasoft/docker-tvheadend
Compare commits
14 Commits
8a2942a3-l
...
6b8f014c-l
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0315bbca19 | ||
|
|
2d9247905a | ||
|
|
4cb33cc26b | ||
|
|
233fd91f47 | ||
|
|
449b4e952b | ||
|
|
b2c9114b8c | ||
|
|
27ffc2a5b0 | ||
|
|
458e79fb5d | ||
|
|
9072267321 | ||
|
|
1402cfd627 | ||
|
|
e783cbddd4 | ||
|
|
8851174fde | ||
|
|
5d7727eb67 | ||
|
|
8d3a0879a5 |
13
.github/workflows/greetings.yml
vendored
Executable file
13
.github/workflows/greetings.yml
vendored
Executable file
@@ -0,0 +1,13 @@
|
||||
name: Greetings
|
||||
|
||||
on: [pull_request_target, issues]
|
||||
|
||||
jobs:
|
||||
greeting:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/first-interaction@v1
|
||||
with:
|
||||
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [issue template](https://github.com/linuxserver/docker-tvheadend/.github/ISSUE_TEMPLATE.md)!'
|
||||
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-tvheadend/.github/PULL_REQUEST_TEMPLATE.md)!'
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
23
.github/workflows/stale.yml
vendored
Executable file
23
.github/workflows/stale.yml
vendored
Executable file
@@ -0,0 +1,23 @@
|
||||
name: Mark stale issues and pull requests
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 1 * * *"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/stale@v1
|
||||
with:
|
||||
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."
|
||||
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."
|
||||
stale-issue-label: 'no-issue-activity'
|
||||
stale-pr-label: 'no-pr-activity'
|
||||
days-before-stale: 30
|
||||
days-before-close: 365
|
||||
exempt-issue-labels: 'awaiting-approval,work-in-progress'
|
||||
exempt-pr-labels: 'awaiting-approval,work-in-progress'
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
@@ -58,7 +58,7 @@ pipeline {
|
||||
env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT
|
||||
env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
|
||||
env.PULL_REQUEST = env.CHANGE_ID
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md'
|
||||
env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/greetings.yml ./.github/workflows/stale.yml'
|
||||
}
|
||||
script{
|
||||
env.LS_RELEASE_NUMBER = sh(
|
||||
@@ -244,7 +244,7 @@ pipeline {
|
||||
cd ${TEMPDIR}/repo/${LS_REPO}
|
||||
git checkout -f master
|
||||
cd ${TEMPDIR}/docker-${CONTAINER_NAME}
|
||||
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github
|
||||
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows
|
||||
cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/
|
||||
cd ${TEMPDIR}/repo/${LS_REPO}/
|
||||
git add ${TEMPLATED_FILES}
|
||||
@@ -698,6 +698,10 @@ pipeline {
|
||||
]
|
||||
]) {
|
||||
sh '''#! /bin/bash
|
||||
set -e
|
||||
TEMPDIR=$(mktemp -d)
|
||||
docker pull linuxserver/jenkins-builder:latest
|
||||
docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=master -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest
|
||||
docker pull lsiodev/readme-sync
|
||||
docker run --rm=true \
|
||||
-e DOCKERHUB_USERNAME=$DOCKERUSER \
|
||||
@@ -705,7 +709,9 @@ pipeline {
|
||||
-e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \
|
||||
-e DOCKER_REPOSITORY=${IMAGE} \
|
||||
-e GIT_BRANCH=master \
|
||||
lsiodev/readme-sync bash -c 'node sync' '''
|
||||
-v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \
|
||||
lsiodev/readme-sync bash -c 'node sync'
|
||||
rm -Rf ${TEMPDIR} '''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,15 +6,15 @@ apk-tools-2.10.5-r1
|
||||
bash-5.0.17-r0
|
||||
brotli-libs-1.0.7-r5
|
||||
bsd-compat-headers-0.7.2-r3
|
||||
busybox-1.31.1-r16
|
||||
busybox-1.31.1-r19
|
||||
bzip2-1.0.8-r1
|
||||
ca-certificates-20191127-r2
|
||||
ca-certificates-bundle-20191127-r2
|
||||
ca-certificates-20191127-r4
|
||||
ca-certificates-bundle-20191127-r4
|
||||
coreutils-8.32-r0
|
||||
curl-7.69.1-r0
|
||||
curl-7.69.1-r1
|
||||
expat-2.2.9-r1
|
||||
ffmpeg-4.2.3-r0
|
||||
ffmpeg-libs-4.2.3-r0
|
||||
ffmpeg-4.3.1-r0
|
||||
ffmpeg-libs-4.3.1-r0
|
||||
fontconfig-2.13.1-r2
|
||||
freetype-2.10.2-r0
|
||||
fribidi-1.0.9-r0
|
||||
@@ -22,7 +22,7 @@ fts-1.2.7-r1
|
||||
gdbm-1.13-r1
|
||||
gmp-6.2.0-r0
|
||||
gnu-libiconv-1.15-r2
|
||||
gnutls-3.6.13-r1
|
||||
gnutls-3.6.15-r0
|
||||
gzip-1.10-r0
|
||||
lame-3.100-r0
|
||||
libacl-2.2.53-r0
|
||||
@@ -32,7 +32,7 @@ libbsd-0.10.0-r0
|
||||
libbz2-1.0.8-r1
|
||||
libc-utils-0.7.2-r3
|
||||
libcrypto1.1-1.1.1g-r0
|
||||
libcurl-7.69.1-r0
|
||||
libcurl-7.69.1-r1
|
||||
libdav1d-0.7.0-r0
|
||||
libdrm-2.4.102-r0
|
||||
libdvbcsa-1.1.0-r1
|
||||
@@ -45,12 +45,12 @@ libhdhomerun-libs-20200225-r0
|
||||
libidn-1.35-r0
|
||||
libidn2-2.3.0-r0
|
||||
libintl-0.20.2-r0
|
||||
libjpeg-turbo-2.0.4-r1
|
||||
libjpeg-turbo-2.0.5-r0
|
||||
libogg-1.3.4-r0
|
||||
libpciaccess-0.16-r0
|
||||
libpng-1.6.37-r1
|
||||
libproc-3.3.16-r0
|
||||
libssh-0.9.4-r0
|
||||
libssh-0.9.4-r1
|
||||
libssl1.1-1.1.1g-r0
|
||||
libstdc++-9.3.0-r2
|
||||
libtasn1-4.16.0-r1
|
||||
@@ -64,13 +64,13 @@ libva-intel-driver-2.4.0-r1
|
||||
libvdpau-1.4-r0
|
||||
libvorbis-1.3.6-r2
|
||||
libvpx-1.8.2-r0
|
||||
libx11-1.6.9-r0
|
||||
libx11-1.6.12-r0
|
||||
libxau-1.0.9-r0
|
||||
libxcb-1.14-r1
|
||||
libxdmcp-1.1.3-r0
|
||||
libxext-1.3.4-r0
|
||||
libxfixes-5.0.3-r2
|
||||
libxml2-2.9.10-r4
|
||||
libxml2-2.9.10-r5
|
||||
libxshmfence-1.3-r0
|
||||
libxslt-1.1.34-r0
|
||||
linux-headers-5.4.5-r1
|
||||
@@ -83,17 +83,17 @@ mesa-dri-gallium-20.0.7-r0
|
||||
mesa-glapi-20.0.7-r0
|
||||
mesa-va-gallium-20.0.7-r0
|
||||
mesa-vdpau-gallium-20.0.7-r0
|
||||
musl-1.1.24-r8
|
||||
musl-utils-1.1.24-r8
|
||||
musl-1.1.24-r9
|
||||
musl-utils-1.1.24-r9
|
||||
ncurses-libs-6.2_p20200523-r0
|
||||
ncurses-terminfo-base-6.2_p20200523-r0
|
||||
nettle-3.5.1-r1
|
||||
nghttp2-libs-1.40.0-r0
|
||||
nghttp2-libs-1.41.0-r0
|
||||
openssl-1.1.1g-r0
|
||||
opus-1.3.1-r0
|
||||
p11-kit-0.23.20-r5
|
||||
pcre2-10.35-r0
|
||||
perl-5.30.2-r0
|
||||
perl-5.30.3-r0
|
||||
perl-archive-zip-1.68-r0
|
||||
perl-b-hooks-endofscope-0.24-r1
|
||||
perl-boolean-0.46-r1
|
||||
@@ -120,7 +120,7 @@ perl-devel-stacktrace-2.04-r1
|
||||
perl-devel-symdump-2.18-r1
|
||||
perl-digest-sha1-2.13-r12
|
||||
perl-dist-checkconflicts-0.11-r1
|
||||
perl-doc-5.30.2-r0
|
||||
perl-doc-5.30.3-r0
|
||||
perl-encode-locale-1.05-r2
|
||||
perl-eval-closure-0.14-r1
|
||||
perl-exception-class-1.44-r1
|
||||
@@ -231,13 +231,13 @@ py3-setuptools-47.0.0-r0
|
||||
py3-six-1.15.0-r0
|
||||
py3-urllib3-1.25.9-r0
|
||||
python2-2.7.18-r0
|
||||
python3-3.8.3-r0
|
||||
python3-3.8.5-r0
|
||||
readline-8.0.4-r0
|
||||
scanelf-1.2.6-r0
|
||||
sdl2-2.0.12-r1
|
||||
shadow-4.8.1-r0
|
||||
sqlite-libs-3.32.1-r0
|
||||
ssl_client-1.31.1-r16
|
||||
ssl_client-1.31.1-r19
|
||||
tar-1.32-r1
|
||||
tzdata-2020a-r0
|
||||
uriparser-0.9.3-r1
|
||||
|
||||
Reference in New Issue
Block a user