Skip to content

chore: add auto-project workflow#41

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

chore: add auto-project workflow#41
MantisClone merged 1 commit intomainfrom
chore/add-auto-project-workflow

Conversation

@MantisClone
Copy link
Member

@MantisClone MantisClone commented Jan 17, 2026

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.


Closes RequestNetwork/public-issues#130

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 17, 2026

Warning

Rate limit exceeded

@MantisClone has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 11 minutes and 23 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 747f176 and ed6d162.

📒 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

greptile-apps bot commented Jan 17, 2026

Greptile Summary

Adds a GitHub Actions workflow that automatically adds newly opened issues and PRs to the organization's project board using a reusable workflow from RequestNetwork/.github.

  • Triggers on issues.opened and pull_request.opened events
  • Uses reusable workflow to handle the logic (PRs with linked issues are not added since the linked issue is tracked instead)
  • Requires PROJECT_TOKEN secret for authentication with GitHub Projects API

Confidence Score: 4/5

  • This PR is safe to merge with minimal risk
  • The workflow is straightforward and follows GitHub Actions best practices. It uses a reusable workflow from the organization's central repository, which promotes consistency. The only minor concern is using @main instead of a pinned commit for the reusable workflow, which could lead to unexpected changes if the upstream workflow is modified
  • No files require special attention. Ensure the PROJECT_TOKEN secret is configured in the repository settings before merging

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Adds workflow to auto-add issues and PRs to project board; references reusable workflow using @main branch instead of pinned commit

Sequence Diagram

sequenceDiagram
    participant User
    participant GitHub
    participant AutoProjectWorkflow
    participant ReusableWorkflow
    participant ProjectBoard

    alt Issue opened
        User->>GitHub: Create issue
        GitHub->>AutoProjectWorkflow: Trigger on issues.opened
        AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml@main
        ReusableWorkflow->>ProjectBoard: Add issue to project (using PROJECT_TOKEN)
        ProjectBoard-->>ReusableWorkflow: Issue added
    else Pull request opened
        User->>GitHub: Create pull request
        GitHub->>AutoProjectWorkflow: Trigger on pull_request.opened
        AutoProjectWorkflow->>ReusableWorkflow: Call add-to-project.yml@main
        ReusableWorkflow->>GitHub: Check for linked issues
        alt PR without linked issue
            ReusableWorkflow->>ProjectBoard: Add PR to project (using PROJECT_TOKEN)
            ProjectBoard-->>ReusableWorkflow: PR added
        else PR with linked issue
            ReusableWorkflow->>ReusableWorkflow: Skip (linked issue tracked instead)
        end
    end
Loading

Copy link

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 file reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

@MantisClone MantisClone merged commit a7f30b3 into main Jan 17, 2026
10 checks passed
@MantisClone MantisClone deleted the chore/add-auto-project-workflow branch January 17, 2026 20:25
Sign up for free to 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