chore: update and merge gitignore

This commit is contained in:
Guillem Hernandez Sola
2026-03-29 17:44:14 +02:00
commit 57bf1aab81
57 changed files with 3124 additions and 0 deletions

23
workflows/rac1.yml Normal file
View File

@@ -0,0 +1,23 @@
name: Rac1 Portada Post RSS to BSKY
description: "A GitHub Action to post RSS feed items to Bluesky (BSKY) using a Python script."
on:
workflow_dispatch:
schedule:
- cron: '*/30 * * * *' # every 30 minutes
jobs:
post:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install atproto fastfeedparser beautifulsoup4 httpx arrow charset-normalizer
- name: Run script
run: |
python3 rss2bsky.py https://www.rac1.cat/rss/home.xml ${{ secrets.BSKY_RAC1_HANDLE }} ${{ secrets.BSKY_RAC1_USERNAME }} ${{ secrets.BSKY_RAC1_APP_PASSWORD }}