forked from Ivasoft/docker-tvheadend
Compare commits
6 Commits
51a4c5be-l
...
ce090770-l
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2c9114b8c | ||
|
|
27ffc2a5b0 | ||
|
|
458e79fb5d | ||
|
|
9072267321 | ||
|
|
1402cfd627 | ||
|
|
e783cbddd4 |
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, 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.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.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/'
|
||||||
env.PULL_REQUEST = env.CHANGE_ID
|
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{
|
script{
|
||||||
env.LS_RELEASE_NUMBER = sh(
|
env.LS_RELEASE_NUMBER = sh(
|
||||||
@@ -244,7 +244,7 @@ pipeline {
|
|||||||
cd ${TEMPDIR}/repo/${LS_REPO}
|
cd ${TEMPDIR}/repo/${LS_REPO}
|
||||||
git checkout -f master
|
git checkout -f master
|
||||||
cd ${TEMPDIR}/docker-${CONTAINER_NAME}
|
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}/
|
cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/
|
||||||
cd ${TEMPDIR}/repo/${LS_REPO}/
|
cd ${TEMPDIR}/repo/${LS_REPO}/
|
||||||
git add ${TEMPLATED_FILES}
|
git add ${TEMPLATED_FILES}
|
||||||
@@ -698,6 +698,10 @@ pipeline {
|
|||||||
]
|
]
|
||||||
]) {
|
]) {
|
||||||
sh '''#! /bin/bash
|
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 pull lsiodev/readme-sync
|
||||||
docker run --rm=true \
|
docker run --rm=true \
|
||||||
-e DOCKERHUB_USERNAME=$DOCKERUSER \
|
-e DOCKERHUB_USERNAME=$DOCKERUSER \
|
||||||
@@ -705,7 +709,9 @@ pipeline {
|
|||||||
-e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \
|
-e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \
|
||||||
-e DOCKER_REPOSITORY=${IMAGE} \
|
-e DOCKER_REPOSITORY=${IMAGE} \
|
||||||
-e GIT_BRANCH=master \
|
-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} '''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,13 +8,13 @@ brotli-libs-1.0.7-r5
|
|||||||
bsd-compat-headers-0.7.2-r3
|
bsd-compat-headers-0.7.2-r3
|
||||||
busybox-1.31.1-r19
|
busybox-1.31.1-r19
|
||||||
bzip2-1.0.8-r1
|
bzip2-1.0.8-r1
|
||||||
ca-certificates-20191127-r3
|
ca-certificates-20191127-r4
|
||||||
ca-certificates-bundle-20191127-r3
|
ca-certificates-bundle-20191127-r4
|
||||||
coreutils-8.32-r0
|
coreutils-8.32-r0
|
||||||
curl-7.69.1-r0
|
curl-7.69.1-r0
|
||||||
expat-2.2.9-r1
|
expat-2.2.9-r1
|
||||||
ffmpeg-4.3-r0
|
ffmpeg-4.3.1-r0
|
||||||
ffmpeg-libs-4.3-r0
|
ffmpeg-libs-4.3.1-r0
|
||||||
fontconfig-2.13.1-r2
|
fontconfig-2.13.1-r2
|
||||||
freetype-2.10.2-r0
|
freetype-2.10.2-r0
|
||||||
fribidi-1.0.9-r0
|
fribidi-1.0.9-r0
|
||||||
@@ -45,7 +45,7 @@ libhdhomerun-libs-20200225-r0
|
|||||||
libidn-1.35-r0
|
libidn-1.35-r0
|
||||||
libidn2-2.3.0-r0
|
libidn2-2.3.0-r0
|
||||||
libintl-0.20.2-r0
|
libintl-0.20.2-r0
|
||||||
libjpeg-turbo-2.0.4-r1
|
libjpeg-turbo-2.0.5-r0
|
||||||
libogg-1.3.4-r0
|
libogg-1.3.4-r0
|
||||||
libpciaccess-0.16-r0
|
libpciaccess-0.16-r0
|
||||||
libpng-1.6.37-r1
|
libpng-1.6.37-r1
|
||||||
@@ -64,7 +64,7 @@ libva-intel-driver-2.4.0-r1
|
|||||||
libvdpau-1.4-r0
|
libvdpau-1.4-r0
|
||||||
libvorbis-1.3.6-r2
|
libvorbis-1.3.6-r2
|
||||||
libvpx-1.8.2-r0
|
libvpx-1.8.2-r0
|
||||||
libx11-1.6.9-r0
|
libx11-1.6.11-r0
|
||||||
libxau-1.0.9-r0
|
libxau-1.0.9-r0
|
||||||
libxcb-1.14-r1
|
libxcb-1.14-r1
|
||||||
libxdmcp-1.1.3-r0
|
libxdmcp-1.1.3-r0
|
||||||
@@ -83,8 +83,8 @@ mesa-dri-gallium-20.0.7-r0
|
|||||||
mesa-glapi-20.0.7-r0
|
mesa-glapi-20.0.7-r0
|
||||||
mesa-va-gallium-20.0.7-r0
|
mesa-va-gallium-20.0.7-r0
|
||||||
mesa-vdpau-gallium-20.0.7-r0
|
mesa-vdpau-gallium-20.0.7-r0
|
||||||
musl-1.1.24-r8
|
musl-1.1.24-r9
|
||||||
musl-utils-1.1.24-r8
|
musl-utils-1.1.24-r9
|
||||||
ncurses-libs-6.2_p20200523-r0
|
ncurses-libs-6.2_p20200523-r0
|
||||||
ncurses-terminfo-base-6.2_p20200523-r0
|
ncurses-terminfo-base-6.2_p20200523-r0
|
||||||
nettle-3.5.1-r1
|
nettle-3.5.1-r1
|
||||||
@@ -231,7 +231,7 @@ py3-setuptools-47.0.0-r0
|
|||||||
py3-six-1.15.0-r0
|
py3-six-1.15.0-r0
|
||||||
py3-urllib3-1.25.9-r0
|
py3-urllib3-1.25.9-r0
|
||||||
python2-2.7.18-r0
|
python2-2.7.18-r0
|
||||||
python3-3.8.3-r0
|
python3-3.8.5-r0
|
||||||
readline-8.0.4-r0
|
readline-8.0.4-r0
|
||||||
scanelf-1.2.6-r0
|
scanelf-1.2.6-r0
|
||||||
sdl2-2.0.12-r1
|
sdl2-2.0.12-r1
|
||||||
|
|||||||
Reference in New Issue
Block a user