Skip to content
This repository was archived by the owner on Jan 18, 2026. It is now read-only.
Closed
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
13 changes: 13 additions & 0 deletions .github/workflows/auto-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Auto Add to Project

on:
issues:
types: [opened]
pull_request:
types: [opened]

jobs:
add-to-project:
uses: RequestNetwork/.github/.github/workflows/add-to-project.yml@main
Copy link

Choose a reason for hiding this comment

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

logic: The reusable workflow path uses @main which references the latest version of the shared workflow. This can cause unexpected behavior changes if the shared workflow is updated without this repository being aware of the changes. Consider pinning to a specific commit SHA (e.g., @abc1234) or tag version for reproducibility and to control when workflow behavior changes.

Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/auto-project.yml
Line: 11:11

Comment:
**logic:** The reusable workflow path uses `@main` which references the latest version of the shared workflow. This can cause unexpected behavior changes if the shared workflow is updated without this repository being aware of the changes. Consider pinning to a specific commit SHA (e.g., `@abc1234`) or tag version for reproducibility and to control when workflow behavior changes.

How can I resolve this? If you propose a fix, please make it concise.

secrets:
PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }}