Run Agent Diane JobBot #50
This file contains hidden or 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 Agent Diane JobBot | |
| on: | |
| schedule: | |
| - cron: '0 14 * * *' # Runs every day at 6AM PST / 9AM EST | |
| workflow_dispatch: | |
| jobs: | |
| run-bot: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: pip install feedparser requests | |
| - name: Run Agent Diane | |
| run: python agent-diane-jobbot.py |