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.

style: Using @main means this workflow will automatically use the latest version of the reusable workflow, which could introduce breaking changes or unexpected behavior without notice.

Suggested change
uses: RequestNetwork/.github/.github/workflows/add-to-project.yml@main
uses: RequestNetwork/.github/.github/workflows/add-to-project.yml@v1.0.0
Prompt To Fix With AI
This is a comment left during a code review.
Path: .github/workflows/auto-project.yml
Line: 11:11

Comment:
**style:** Using `@main` means this workflow will automatically use the latest version of the reusable workflow, which could introduce breaking changes or unexpected behavior without notice.

```suggestion
    uses: RequestNetwork/.github/.github/workflows/add-to-project.yml@v1.0.0
```

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

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