Switch weekly trend workflow to artifacts instead of repo commits

Stores the failed-channel snapshot as a workflow artifact (90-day
retention) and downloads the previous run's artifact for comparison,
instead of committing a state file back to the repo.
master
Kálmán „KAMI” Szalai 2026-08-18 13:02:04 +02:00
parent 0026bd1378
commit 4169248c71
1 changed files with 24 additions and 21 deletions

View File

@ -22,17 +22,29 @@ jobs:
npm install -g iptv-checker || true npm install -g iptv-checker || true
sudo apt-get update && sudo apt-get install -y ffmpeg sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Download last week's snapshot (if any)
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mkdir -p prev_snapshot
prev_run=$(gh run list --repo "${{ github.repository }}" --workflow weekly_trend.yml --status success --limit 1 --json databaseId -q '.[0].databaseId' || true)
if [ -n "$prev_run" ]; then
echo "Found previous successful run: $prev_run"
gh run download "$prev_run" --repo "${{ github.repository }}" -n checker-history -D prev_snapshot || echo "No artifact on that run (probably the very first one)."
else
echo "No previous successful run found — this is the first run."
fi
- name: Run checker against the full playlist - name: Run checker against the full playlist
run: | run: |
mkdir -p output mkdir -p output
iptv-checker -o output -p 100 -t 120000 ./playlist.m3u8 || true iptv-checker -o output -p 100 -t 120000 ./playlist.m3u8 || true
- name: Compare against last week's snapshot and update it - name: Compare against last week's snapshot
run: | run: |
mkdir -p .github/checker-history mkdir -p snapshot
today=$(date -u +%Y-%m-%d) curr_file="snapshot/failed.txt"
prev_file=".github/checker-history/failed.txt" prev_file="prev_snapshot/failed.txt"
curr_file=".github/checker-history/failed-current.txt"
grep '^http' output/failed.m3u 2>/dev/null | sort -u > "$curr_file" || touch "$curr_file" grep '^http' output/failed.m3u 2>/dev/null | sort -u > "$curr_file" || touch "$curr_file"
@ -40,7 +52,7 @@ jobs:
failed=$(grep -c '^#EXTINF' output/failed.m3u 2>/dev/null || echo 0) failed=$(grep -c '^#EXTINF' output/failed.m3u 2>/dev/null || echo 0)
{ {
echo "## Weekly channel health trend — $today" echo "## Weekly channel health trend — $(date -u +%Y-%m-%d)"
echo "" echo ""
echo "- Online: $online" echo "- Online: $online"
echo "- Failed: $failed" echo "- Failed: $failed"
@ -75,18 +87,9 @@ jobs:
echo "_(no previous snapshot — this is the first run, nothing to compare against yet)_" >> "$GITHUB_STEP_SUMMARY" echo "_(no previous snapshot — this is the first run, nothing to compare against yet)_" >> "$GITHUB_STEP_SUMMARY"
fi fi
mv "$curr_file" "$prev_file" - name: Upload this week's snapshot for next time
uses: actions/upload-artifact@v4
- name: Commit updated snapshot with:
run: | name: checker-history
git config user.name "PlaylistBot" path: snapshot/failed.txt
git config user.email "playlistbot@users.noreply.github.com" retention-days: 90
git add .github/checker-history/failed.txt
git diff --staged --quiet && exit 0
git commit -m "Weekly checker snapshot ($(date -u +%Y-%m-%d))"
for i in 1 2 3 4 5; do
git fetch origin master
git rebase origin/master && git push && break
echo "Push attempt $i failed, retrying..."
sleep 5
done