Skip to content

Add a registry validation framework for projects_registry.json #1017

Add a registry validation framework for projects_registry.json

Add a registry validation framework for projects_registry.json #1017

Workflow file for this run

name: Issue Auto-Comment
on:
issues:
types:
- opened
jobs:
add-comment:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add assignment warning comment
uses: actions/github-script@v7
with:
script: |
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: `
⚠️ **Important Contribution Guideline**
Please do not open a Pull Request without being assigned to this issue first.
Please do not open a Pull Request without being assigned to this issue first.
**How to proceed:**
1. Comment on this issue to express interest
2. Wait for maintainers to assign you to the issue
3. Once assigned, you can start working on the PR
4. Include the assignment in your PR checklist
Thank you for helping us maintain a smooth workflow! 🙏`
});