Skip to content

chore: add auto-project workflow - #10

Merged
MantisClone merged 1 commit into
mainfrom
chore/add-auto-project-workflow
Jan 17, 2026
Merged

chore: add auto-project workflow#10
MantisClone merged 1 commit into
mainfrom
chore/add-auto-project-workflow

Conversation

@MantisClone

@MantisCloneMantisClone commented Jan 17, 2026

Copy link
Copy Markdown

Adds workflow to automatically add issues and PRs to the project board.

  • Issues: Added when opened
  • PRs without linked issues: Added when opened
  • PRs with linked issues: Not added (the linked issue is tracked instead)

Uses the reusable workflow from RequestNetwork/.github.


ClosesRequestNetwork/public-issues#130

@coderabbitai

Copy link
Copy Markdown

Warning

Rate limit exceeded

@MantisClone has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 12 minutes and 28 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between fb99226 and 284fbbb.

📒 Files selected for processing (1)
  • .github/workflows/auto-project.yml

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@greptile-apps

Copy link
Copy Markdown

Greptile Summary

Added a new GitHub Actions workflow to automatically add newly opened issues and pull requests to the RequestNetwork project board.

  • Triggers on issues.opened and pull_request.opened events
  • Delegates to a reusable workflow from RequestNetwork/.github for the actual project board management
  • Uses the PROJECT_TOKEN secret for authentication with the GitHub Projects API
  • Follows the repository's established pattern of using @main for internal reusable workflows
  • Complements the PR description's stated behavior: issues are always added, PRs without linked issues are added, PRs with linked issues are skipped

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • The workflow is a simple, straightforward addition that follows existing repository patterns, uses appropriate event triggers, and delegates to a trusted reusable workflow from the same organization
  • No files require special attention

Important Files Changed

FilenameOverview
.github/workflows/auto-project.ymlNew workflow that automatically adds opened issues and PRs to the project board using a reusable workflow

Sequence Diagram

sequenceDiagram
participant User
participant GitHub
participant Workflow as auto-project.yml
participant Reusable as RequestNetwork/.github<br/>add-to-project.yml
participant ProjectBoard as GitHub Project Board
alt Issue Opened
User->>GitHub: Open new issue
GitHub->>Workflow: Trigger 'issues.opened' event
else Pull Request Opened
User->>GitHub: Open new pull request
GitHub->>Workflow: Trigger 'pull_request.opened' event
end
Workflow->>Reusable: Call reusable workflow
Note over Workflow,Reusable: Pass PROJECT_TOKEN secret
Reusable->>Reusable: Check if PR has linked issue
alt PR without linked issue OR Issue
Reusable->>ProjectBoard: Add item to project board
ProjectBoard-->>Reusable: Item added
else PR with linked issue
Reusable->>Reusable: Skip (linked issue tracked instead)
end
Reusable-->>Workflow: Complete
Workflow-->>GitHub: Workflow complete
Loading

@MantisClone
MantisClone merged commit 6d21a51 into mainJan 17, 2026
10 checks passed
@MantisClone
MantisClone deleted the chore/add-auto-project-workflow branch January 17, 2026 20:24
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Chore - Deploy auto-project workflow to all tracked repos

1 participant

@MantisClone