Skip to content

Commit ec4035d

Browse files
jt14denclaude
andcommitted
fix: set new issues to Todo status in project board
Update workflow to set Status field to 'Todo' instead of 'Education' swimlane. Issues will now appear in Todo column rather than 'No Status'. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent d66d991 commit ec4035d

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/add-to-project.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,20 @@ jobs:
1111
name: Add to Project
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/add-to-project@v1.0.0
14+
- uses: actions/add-to-project@v1.0.2
1515
with:
1616
# The URL of the GitHub Project
1717
project-url: https://github.com/orgs/UC-OSPO-Network/projects/1
18-
18+
1919
# THIS IS CRITICAL: You must create this secret in your repo settings!
2020
# The default GITHUB_TOKEN cannot typically access Org-level projects.
2121
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
22+
23+
# Optional: Add labels to the issue/PR when added to project
24+
labeled: education
25+
26+
# Set the Status field to "Todo" for new issues
27+
# Note: If your project has both a Status field and Education swimlane,
28+
# you may need to manually set the Education swimlane in the project UI
29+
# or adjust this to match your project's primary status field name
30+
project-column-name: Todo

0 commit comments

Comments
 (0)