mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
a161a7d0c9
This PR formats the YAML files in the repo with Prettier. Release Notes: - N/A
19 lines
558 B
YAML
19 lines
558 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@v4
|
|
with:
|
|
python-version: "3.10.5"
|
|
architecture: "x64"
|
|
cache: "pip"
|
|
- run: pip install -r script/update_top_ranking_issues/requirements.txt
|
|
- run: python script/update_top_ranking_issues/main.py 5393 --github-token ${{ secrets.GITHUB_TOKEN }} --prod
|