mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
99 lines
No EOL
3 KiB
YAML
99 lines
No EOL
3 KiB
YAML
name: Update Indexers List
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
repository_dispatch:
|
|
types: [update-indexers]
|
|
|
|
env:
|
|
DOCS_REPO: 'autobrr/autobrr.com'
|
|
SOURCE_REPO: 'autobrr/autobrr'
|
|
DOCS_PATH: 'autobrr.com'
|
|
SOURCE_PATH: 'autobrr'
|
|
|
|
jobs:
|
|
update-indexers:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out autobrr.com repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ env.DOCS_REPO }}
|
|
path: ${{ env.DOCS_PATH }}
|
|
token: ${{ secrets.DOCS_TOKEN }}
|
|
|
|
- name: Check out autobrr repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ env.SOURCE_REPO }}
|
|
path: ${{ env.SOURCE_PATH }}
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: Update indexers list
|
|
run: |
|
|
# Verify source paths exist before running script
|
|
if [ ! -d "${{ env.SOURCE_PATH }}/internal/indexer/definitions" ]; then
|
|
echo "Error: Required definitions directory not found"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Running update script..."
|
|
cd ${{ env.SOURCE_PATH }}
|
|
python3 scripts/update-indexers.py
|
|
echo "Update script completed"
|
|
|
|
# Verify output files were generated
|
|
echo "Checking generated files..."
|
|
ls -l ../${{ env.DOCS_PATH }}/snippets/indexers.mdx ../${{ env.DOCS_PATH }}/snippets/freeleech.mdx || true
|
|
|
|
- name: Create Pull Request
|
|
run: |
|
|
cd ${{ env.DOCS_PATH }}
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
|
|
echo "Current git status:"
|
|
git status
|
|
|
|
# Create a new branch
|
|
BRANCH_NAME="update-indexers-$(date +%Y%m%d-%H%M%S)"
|
|
echo "Creating branch: $BRANCH_NAME"
|
|
git checkout -b $BRANCH_NAME
|
|
|
|
echo "Changes to be added:"
|
|
git status snippets/indexers.mdx snippets/freeleech.mdx
|
|
|
|
# Add and commit changes
|
|
git add snippets/indexers.mdx snippets/freeleech.mdx
|
|
|
|
echo "Git status after adding files:"
|
|
git status
|
|
|
|
# Check if there are staged changes
|
|
if git diff --cached --quiet; then
|
|
echo "No changes detected in the files"
|
|
else
|
|
echo "Changes detected, creating commit and PR"
|
|
git commit -m "docs: update indexers and freeleech support lists"
|
|
|
|
echo "Pushing changes..."
|
|
git push origin $BRANCH_NAME
|
|
|
|
echo "Creating PR..."
|
|
gh pr create \
|
|
--repo ${{ env.DOCS_REPO }} \
|
|
--base main \
|
|
--head $BRANCH_NAME \
|
|
--title "docs: update indexers and freeleech support lists" \
|
|
--body "Automated update of the indexers and freeleech support lists from definitions" \
|
|
--label "documentation"
|
|
fi
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.DOCS_TOKEN }} |