Regulatory Feed (Project 2) #4
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: Regulatory Feed (Project 2) | |
| # Manual trigger only — checks all 24 government sites for regulatory updates | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| feed: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: pip install -r automation/requirements.txt | |
| - name: Check all 24 regulatory updates | |
| env: | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| AUDIT_PAT: ${{ secrets.AUDIT_PAT }} | |
| run: | | |
| cd automation | |
| python feed_runner.py |