mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
19 lines
574 B
YAML
19 lines
574 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@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
architecture: "x64"
|
|
cache: "pip"
|
|
- run: pip install -r script/update_top_ranking_issues/requirements.txt
|
|
- run: python script/update_top_ranking_issues/main.py --github-token ${{ secrets.GITHUB_TOKEN }} --issue-reference-number 5393
|