Skip to content
Closed
Changes from 2 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
20 changes: 20 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Assign

on:
issues:
types: [opened, edited, labeled, unlabeled]
pull_request:
types: [opened, edited, labeled, unlabeled]

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/auto-assign@v3
Copy link

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

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

Using a third-party action without pinning to a specific commit hash can introduce security vulnerabilities if the action is compromised. Consider pinning to a specific commit hash instead of using a tag (e.g., 'wow-actions/auto-assign@abc123...').

Suggested change
- uses: wow-actions/auto-assign@v3
- uses: wow-actions/auto-assign@b7e6e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2e2

Copilot uses AI. Check for mistakes.

Copy link
Member Author

Choose a reason for hiding this comment

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

@sanjay-kv Need your review here.

with:
GITHUB_TOKEN: ${{ secrets.PERSONAL_TOKEN }}
reviewers: |
sanjay-kv
iitzIrFan
assignees: sanjay-kv, iitzIrFan
skipKeywords: wip, draft
Loading