Skip to content

removed cron schedule runs to workflow until the GitHub token issue is fixed #13339

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/add-unanswered-to-project.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Add Open External Contributor PRs and Issues to PyTorch Org Project 136

on:
schedule:
- cron: '0 * * * *'
# schedule:
# - cron: '0 * * * *'
workflow_dispatch:

jobs:
Expand All @@ -12,7 +12,7 @@ jobs:
- name: Add open issues and open, non-draft PRs to org project (excluding certain authors)
uses: actions/github-script@v7
with:
github-token: ${{ secrets.PYTORCH_PROJECT_PAT }}
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const projectId = "PVT_kwDOAUB9vs4A_PUL"; // PyTorch org project 136
const owner = 'pytorch';
Expand Down
Loading