mirror of
				https://github.com/linuxserver/docker-jellyfin.git
				synced 2025-10-31 21:17:39 +09:00 
			
		
		
		
	Bot Updating Templated Files
This commit is contained in:
		
							
								
								
									
										20
									
								
								.github/workflows/external_trigger.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/external_trigger.yml
									
									
									
									
										vendored
									
									
								
							| @@ -11,15 +11,17 @@ jobs: | |||||||
|  |  | ||||||
|       - name: External Trigger |       - name: External Trigger | ||||||
|         if: github.ref == 'refs/heads/nightly' |         if: github.ref == 'refs/heads/nightly' | ||||||
|  |         env: | ||||||
|  |           SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} | ||||||
|         run: | |         run: | | ||||||
|           printf "# External trigger for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY |           printf "# External trigger for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY | ||||||
|           if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY }}" ]; then |           if grep -q "^jellyfin_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then | ||||||
|             echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY |             echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY | ||||||
|             echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY |             echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`jellyfin_nightly\`; skipping trigger." >> $GITHUB_STEP_SUMMARY | ||||||
|             exit 0 |             exit 0 | ||||||
|           fi |           fi | ||||||
|           echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY |           echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY | ||||||
|           echo "> External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY |           echo "> External trigger running off of nightly branch. To disable this trigger, add \`jellyfin_nightly\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY | ||||||
|           printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY |           printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY | ||||||
|           EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') |           EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/unstable/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}') | ||||||
|           echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY |           echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY | ||||||
| @@ -80,9 +82,20 @@ jobs: | |||||||
|           elif [[ $(( $(date +%s%3N) - $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.timestamp')  )) -lt $(( 6 * 3600000 )) ]]; then |           elif [[ $(( $(date +%s%3N) - $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/lastBuild/api/json | jq -r '.timestamp')  )) -lt $(( 6 * 3600000 )) ]]; then | ||||||
|             echo "New version \`${EXT_RELEASE}\` found; but the last build was less than 6 hours ago; skipping trigger" >> $GITHUB_STEP_SUMMARY |             echo "New version \`${EXT_RELEASE}\` found; but the last build was less than 6 hours ago; skipping trigger" >> $GITHUB_STEP_SUMMARY | ||||||
|             exit 0 |             exit 0 | ||||||
|  |           else | ||||||
|  |             if [[ "${artifacts_found}" == "false" ]]; then | ||||||
|  |               echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY | ||||||
|  |               echo "> New version detected, but not all artifacts are published yet; skipping trigger" >> $GITHUB_STEP_SUMMARY | ||||||
|  |               FAILURE_REASON="New version ${EXT_RELEASE} for jellyfin tag nightly is detected, however not all artifacts are uploaded to upstream release yet. Will try again later." | ||||||
|  |               curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, | ||||||
|  |                 "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], | ||||||
|  |                 "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} | ||||||
|             else |             else | ||||||
|               printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY |               printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY | ||||||
|               echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY |               echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY | ||||||
|  |               if "${artifacts_found}" == "true" ]]; then | ||||||
|  |                 echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY | ||||||
|  |               fi | ||||||
|               response=$(curl -iX POST \ |               response=$(curl -iX POST \ | ||||||
|                 https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ |                 https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ | ||||||
|                 --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") |                 --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") | ||||||
| @@ -104,3 +117,4 @@ jobs: | |||||||
|                 "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], |                 "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], | ||||||
|                 "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} |                 "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} | ||||||
|             fi |             fi | ||||||
|  |           fi | ||||||
|   | |||||||
							
								
								
									
										58
									
								
								.github/workflows/package_trigger_scheduler.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										58
									
								
								.github/workflows/package_trigger_scheduler.yml
									
									
									
									
										vendored
									
									
								
							| @@ -14,6 +14,8 @@ jobs: | |||||||
|           fetch-depth: '0' |           fetch-depth: '0' | ||||||
|  |  | ||||||
|       - name: Package Trigger Scheduler |       - name: Package Trigger Scheduler | ||||||
|  |         env: | ||||||
|  |           SKIP_PACKAGE_TRIGGER: ${{ vars.SKIP_PACKAGE_TRIGGER }} | ||||||
|         run: | |         run: | | ||||||
|           printf "# Package trigger scheduler for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY |           printf "# Package trigger scheduler for docker-jellyfin\n\n" >> $GITHUB_STEP_SUMMARY | ||||||
|           printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY |           printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY | ||||||
| @@ -24,27 +26,57 @@ jobs: | |||||||
|               continue |               continue | ||||||
|             fi |             fi | ||||||
|             printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY |             printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY | ||||||
|             ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${br}/jenkins-vars.yml | yq -r '.ls_branch') |             JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${br}/jenkins-vars.yml) | ||||||
|             if [ "${br}" == "${ls_branch}" ]; then |             if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then | ||||||
|               echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY |               echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY | ||||||
|               if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-jellyfin/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then |               if [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then | ||||||
|                 echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY |                 echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY | ||||||
|                 triggered_branches="${triggered_branches}${br} " |                 echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY | ||||||
|                 curl -iX POST \ |                 skipped_branches="${skipped_branches}${br} " | ||||||
|                   -H "Authorization: token ${{ secrets.CR_PAT }}" \ |               elif grep -q "^jellyfin_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then | ||||||
|                   -H "Accept: application/vnd.github.v3+json" \ |                 echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY | ||||||
|                   -d "{\"ref\":\"refs/heads/${br}\"}" \ |                 echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`jellyfin_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY | ||||||
|                   https://api.github.com/repos/linuxserver/docker-jellyfin/actions/workflows/package_trigger.yml/dispatches |                 skipped_branches="${skipped_branches}${br} " | ||||||
|                 sleep 30 |               elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then | ||||||
|  |                 echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 echo "> There already seems to be an active build on Jenkins; skipping package trigger for ${br}" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 skipped_branches="${skipped_branches}${br} " | ||||||
|               else |               else | ||||||
|                 echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY |                 echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 echo "> Triggering package trigger for branch ${br}" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 printf "> To disable, add \`jellyfin_%s\` into the Github organizational variable \`SKIP_PACKAGE_TRIGGER\`.\n\n" "${br}" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 triggered_branches="${triggered_branches}${br} " | ||||||
|  |                 response=$(curl -iX POST \ | ||||||
|  |                   https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/${br}/buildWithParameters?PACKAGE_CHECK=true \ | ||||||
|  |                   --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") | ||||||
|  |                 echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 sleep 10 | ||||||
|  |                 buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') | ||||||
|  |                 buildurl="${buildurl%$'\r'}" | ||||||
|  |                 echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY | ||||||
|  |                 curl -iX POST \ | ||||||
|  |                   "${buildurl}submitDescription" \ | ||||||
|  |                   --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ | ||||||
|  |                   --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ | ||||||
|  |                   --data-urlencode "Submit=Submit" | ||||||
|  |                 sleep 20 | ||||||
|               fi |               fi | ||||||
|             else |             else | ||||||
|               echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY |               echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY | ||||||
|             fi |             fi | ||||||
|           done |           done | ||||||
|  |           if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then | ||||||
|  |             if [[ -n "${triggered_branches}" ]]; then | ||||||
|  |               NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n" | ||||||
|  |             fi | ||||||
|  |             if [[ -n "${skipped_branches}" ]]; then | ||||||
|  |               NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n" | ||||||
|  |             fi | ||||||
|             echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" |             echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" | ||||||
|             echo "**** Notifying Discord ****" |             echo "**** Notifying Discord ****" | ||||||
|             curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, |             curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, | ||||||
|             "description": "**Package Check Build(s) Triggered for jellyfin** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], |               "description": "**Package Check Build(s) Triggered for jellyfin** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-jellyfin/activity/"' \n"}], | ||||||
|               "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} |               "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} | ||||||
|  |           fi | ||||||
|   | |||||||
| @@ -37,7 +37,7 @@ Find us at: | |||||||
| [](https://hub.docker.com/r/linuxserver/jellyfin) | [](https://hub.docker.com/r/linuxserver/jellyfin) | ||||||
| [](https://hub.docker.com/r/linuxserver/jellyfin) | [](https://hub.docker.com/r/linuxserver/jellyfin) | ||||||
| [](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/) | [](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-jellyfin/job/nightly/) | ||||||
| [](https://ci-tests.linuxserver.io/linuxserver/jellyfin/latest/index.html) | [](https://ci-tests.linuxserver.io/linuxserver/jellyfin/nightly/index.html) | ||||||
|  |  | ||||||
| [Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. | [Jellyfin](https://github.com/jellyfin/jellyfin) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it. | ||||||
|  |  | ||||||
| @@ -346,7 +346,8 @@ Below are the instructions for updating containers: | |||||||
|  |  | ||||||
| ### Image Update Notifications - Diun (Docker Image Update Notifier) | ### Image Update Notifications - Diun (Docker Image Update Notifier) | ||||||
|  |  | ||||||
| **tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. | >[!TIP] | ||||||
|  | >We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. | ||||||
|  |  | ||||||
| ## Building locally | ## Building locally | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user