name: Update Community Skins README on: schedule: - cron: '*/5 * * * *' workflow_dispatch: env: README_PATH: "${{ github.workspace }}/README.md" IMAGE_NAME: osc/skins-image GITEA_API: https://${{ vars.CONTAINER_REGISTRY }}/api/v1 ARTIFACT_PATH: "/data" USER_ROWS_FILE: "/data/user_rows.txt" AVATAR_ROWS_FILE: "/data/avatar_rows.txt" jobs: gather-skins: runs-on: ubuntu-latest container: image: ${{ vars.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }}:latest steps: - id: mask-secrets name: Mask Sensitive Tokens run: | echo "::add-mask::${{ secrets.TOKEN }}" echo "::add-mask::${{ secrets.OSUAPIV1 }}" - id: checkout-code name: Checkout Repository uses: actions/checkout@v4 with: token: ${{ secrets.TOKEN }} - id: fetch-skins-data name: Find Skin Repositories and Generate Tables run: | set -eo pipefail mkdir -p "$ARTIFACT_PATH" total_valid_entries=0 page=1 while :; do users_json=$(curl --retry 3 --retry-delay 5 -sSL \ -H "Authorization: token ${{ secrets.TOKEN }}" \ "$GITEA_API/admin/users?limit=50&page=$page&_ts=$(date +%s)") count=$(echo "$users_json" | jq 'length') [ "$count" -eq 0 ] && break echo "📄 Found $count users on page $page" for i in $(seq 0 $((count - 1))); do user_login=$(echo "$users_json" | jq -r ".[$i].login") echo "🔍 User: $user_login" repos_json=$(curl --retry 3 --retry-delay 5 -sSL \ -H "Authorization: token ${{ secrets.TOKEN }}" \ "$GITEA_API/users/$user_login/repos?_ts=$(date +%s)") if ! echo "$repos_json" | jq -e . >/dev/null 2>&1; then echo " ⚠️ Could not parse repos for $user_login" continue fi repos_count=$(echo "$repos_json" | jq 'length') echo " 📦 $repos_count repos found" [ "$repos_count" -eq 0 ] && continue for j in $(seq 0 $((repos_count - 1))); do owner=$(echo "$repos_json" | jq -r ".[$j].owner.login") repo=$(echo "$repos_json" | jq -r ".[$j].name") html_url=$(echo "$repos_json" | jq -r ".[$j].html_url") echo " → Repo: $owner/$repo" dir_code=$(curl --retry 3 --retry-delay 5 -s -w "%{http_code}" -o temp_dir.json \ -H "Authorization: token ${{ secrets.TOKEN }}" \ "$GITEA_API/repos/$owner/$repo/contents/Skins?_ts=$(date +%s)") if [ "$dir_code" != "200" ]; then echo " ❌ Skipped: No Skins/ directory (HTTP $dir_code)" continue fi readme_code=$(curl --retry 3 --retry-delay 5 -s -w "%{http_code}" -o temp_readme.json \ -H "Authorization: token ${{ secrets.TOKEN }}" \ "$GITEA_API/repos/$owner/$repo/contents/README.md?_ts=$(date +%s)") if [ "$readme_code" != "200" ]; then echo " ❌ Skipped: No README.md (HTTP $readme_code)" continue fi content=$(jq -r .content < temp_readme.json | base64 -d || echo "") osu_id=$(echo "$content" | awk '/osuid:[ ]*[0-9]+/ { match($0, /[0-9]+/); print substr($0, RSTART, RLENGTH); exit }') if [ -z "$osu_id" ]; then echo " ❌ Skipped: No osuid in README" continue fi user_data=$(curl --retry 3 --retry-delay 5 -s \ "https://osu.ppy.sh/api/get_user?k=${{ secrets.OSUAPIV1 }}&u=$osu_id&type=id&_ts=$(date +%s)") if [ "$(echo "$user_data" | jq 'length')" -eq 0 ]; then echo " 🚫 Restricted or banned user" username="$owner" pp_rank="RESTRICTED" pp_country_rank="RESTRICTED" padded_rank="9999999" gitea_avatar_url="https://git.sulejmani.xyz/avatar/$owner" profile_url="https://git.sulejmani.xyz/$owner" skins_url="$profile_url?tab=repositories" printf "%s|
| Name | Global Rank | Country Rank | Profile | Skins |
|---|
EOF sort -t '|' -k1,1n "$AVATAR_ROWS_FILE" | cut -d'|' -f2- | sed 's/^/ /' >> "$README_PATH" cat >> "$README_PATH" <<-EOF
EOF - id: check-readme name: Check for README changes run: | if cmp --silent "$README_PATH" "${README_PATH}.bak"; then echo "✅ README unchanged" echo "changed=false" >> "$GITHUB_OUTPUT" else echo "⚠️ README was modified" echo "changed=true" >> "$GITHUB_OUTPUT" fi - id: upload-updated-readme name: Upload updated README if: steps.check-readme.outputs.changed == 'true' uses: actions/upload-artifact@v3 with: name: updated-readme path: ${{ env.README_PATH }} retention-days: 1 commit-readme: needs: generate-readme if: needs.generate-readme.outputs.readme_changed == 'true' runs-on: ubuntu-latest container: image: ${{ vars.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }}:latest steps: - id: checkout-code name: Checkout Repository uses: actions/checkout@v4 with: token: ${{ secrets.TOKEN }} - id: configure-git name: Configure Git run: | git config user.email "arlind@sulej.ch" git config user.name "ci-bot" git config lfs.https://${{ vars.CONTAINER_REGISTRY }}/arlind/skins.git/info/lfs.locksverify true - id: rebase-repository name: Rebase Repository run: | git fetch origin main git rebase origin/main || { echo "⚠️ Git rebase failed, likely due to conflicts." git rebase --abort || true exit 1 } - id: download-updated-readme name: Download README uses: actions/download-artifact@v3 with: name: updated-readme path: . - id: commit-and-push name: Commit and Push README run: | git config advice.addIgnoredFile false git add README.md git commit -m "[ci skip] push back from pipeline" -q || echo "No changes to commit" if [ "${GITHUB_REF}" = "refs/heads/main" ]; then git push origin HEAD:main || echo "No changes to push" else git push origin HEAD:"${GITHUB_REF_NAME}" || echo "No changes to push" fi