From 1c977bfc7d0241898c8da73c0947692ce2da0af1 Mon Sep 17 00:00:00 2001 From: maskedwolff Date: Thu, 17 Apr 2025 03:27:50 -0400 Subject: [PATCH] Delete .github/workflows/merge-fancode-playlist.yml --- .github/workflows/merge-fancode-playlist.yml | 29 -------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/merge-fancode-playlist.yml diff --git a/.github/workflows/merge-fancode-playlist.yml b/.github/workflows/merge-fancode-playlist.yml deleted file mode 100644 index b37ad97..0000000 --- a/.github/workflows/merge-fancode-playlist.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Merge Fancode Playlist with My Playlist on Update - -on: - push: - branches: - - main # This assumes fancode.m3u is on the main branch of drmlive/fancode-live-events - paths: - - "fancode.m3u" # Triggers only if fancode.m3u file changes - workflow_dispatch: # Allows manual trigger from the GitHub UI - -jobs: - merge: - runs-on: ubuntu-22.04 # Change to a specific version to avoid "waiting" issues - - steps: - - name: Checkout My Repo - uses: actions/checkout@v3 - - - name: Download Fancode Playlist - run: | - curl -L "https://raw.githubusercontent.com/drmlive/fancode-live-events/main/fancode.m3u" -o fancode_playlist.m3u - - - name: Merge Playlists with Headers - run: | - echo "# --- Fancode Playlist: drmlive/fancode-live-events ---" > merged_playlist.m3u - cat fancode_playlist.m3u >> merged_playlist.m3u - echo "" >> merged_playlist.m3u - echo "# --- Your Playlist: MaskedWolff/maskedwolf ---" >> merged_playlist.m3u - cat my_playlist.m3u_