mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
This reverts commit 03e8a4cf45.
Reverted https://github.com/pytorch/pytorch/pull/128591 on behalf of https://github.com/atalman due to Contains release only changes should not be landed ([comment](https://github.com/pytorch/pytorch/pull/128591#issuecomment-2168308233))
23 lines
721 B
YAML
23 lines
721 B
YAML
name: Close nonexistent disable issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: 5 22 * * 5 # this should be about 3PM PT on Friday
|
|
|
|
jobs:
|
|
close-nonexistent-disable-issues:
|
|
environment: rockset-read-only
|
|
if: github.repository_owner == 'pytorch'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout PyTorch
|
|
uses: pytorch/pytorch/.github/actions/checkout-pytorch@main
|
|
|
|
- name: Run close_nonexistent_disable_issues.py
|
|
env:
|
|
ROCKSET_API_KEY: ${{ secrets.ROCKSET_API_KEY }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
pip3 install requests==2.32.2
|
|
pip3 install rockset==1.0.3
|
|
python3 .github/scripts/close_nonexistent_disable_issues.py
|