mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 10:40:54 +00:00
d8484c57e1
Release Notes: - N/A
23 lines
860 B
YAML
23 lines
860 B
YAML
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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
|
|
- name: Set up uv
|
|
uses: astral-sh/setup-uv@v3
|
|
with:
|
|
version: "latest"
|
|
enable-cache: true
|
|
cache-dependency-glob: "script/update_top_ranking_issues/pyproject.toml"
|
|
- name: Install Python 3.12
|
|
run: uv python install 3.12
|
|
- name: Install dependencies
|
|
run: uv sync --project script/update_top_ranking_issues -p 3.12
|
|
- 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
|