Merge pull request #331 from worldfnd/px/expand-claude-md #119
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: Issue Tracker | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| issue-tracker: | |
| name: Issue Tracker | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Cache Python dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.cache/pip | |
| key: issue_tracker-${{ hashFiles('.github/workflows/issue_tracker.yml') }} | |
| restore-keys: issue_tracker- | |
| - name: Install Python dependencies | |
| run: pip install PyGithub numpy | |
| - name: Update issues | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ISSUE_TRACKER_PAT }} | |
| REPO_NAME: ${{ github.repository }} | |
| DRY_RUN: false | |
| run: python3 .github/scripts/issue_tracker.py |