Run Twitter Pipeline #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Twitter Pipeline | |
"on": | |
schedule: | |
- cron: "0 */12 * * *" # Run every 12 hours | |
workflow_dispatch: # Allow manual triggers | |
push: | |
branches: | |
- main | |
paths: | |
- "pipeline/**" | |
- ".github/workflows/run_twitter.yml" | |
env: | |
# DLT specific environment variables | |
TWITTER_BEARER_TOKEN: ${{ secrets.TWITTER_BEARER_TOKEN }} | |
DESTINATION__MOTHERDUCK__CREDENTIALS__DATABASE: ${{ secrets.MOTHERDUCK_DATABASE }} | |
DESTINATION__MOTHERDUCK__CREDENTIALS__PASSWORD: ${{ secrets.MOTHERDUCK_TOKEN }} | |
PYTHONUNBUFFERED: "1" | |
jobs: | |
maybe_skip: | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
concurrent_skipping: always | |
skip_after_successful_duplicate: false | |
run_pipeline: | |
needs: maybe_skip | |
if: needs.maybe_skip.outputs.should_skip != 'true' | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: pipeline | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
python-version: "3.10" | |
enable-cache: true | |
cache-dependency-glob: | | |
pipeline/pyproject.toml | |
pipeline/uv.lock | |
- name: Run Twitter pipeline | |
run: uv run python twitter_pipeline.py |