Merge pull request #422 from Evalir/evalir/fix-trim #190
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: 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.GITHUB_TOKEN }} | |
REPO_NAME: ${{ github.repository }} | |
DRY_RUN: false | |
run: .github/scripts/issue_tracker.py |