Update All Top Ranking Issues #31
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: Update All Top Ranking Issues | |
on: | |
schedule: | |
- cron: "0 */12 * * *" | |
workflow_dispatch: | |
jobs: | |
update_top_ranking_issues: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'zed-industries' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Set up uv | |
uses: astral-sh/setup-uv@f3bcaebff5eace81a1c062af9f9011aae482ca9d # v3 | |
with: | |
version: "latest" | |
enable-cache: true | |
cache-dependency-glob: "script/update_top_ranking_issues/pyproject.toml" | |
- name: Install Python 3.13 | |
run: uv python install 3.13 | |
- name: Install dependencies | |
run: uv sync --project script/update_top_ranking_issues -p 3.13 | |
- name: Run script | |
run: uv run --project script/update_top_ranking_issues script/update_top_ranking_issues/main.py --github-token ${{ secrets.GITHUB_TOKEN }} --issue-reference-number 5393 |