fix : invert blank_row_from_bottom calculation in Number-Sliding-Puzzle is_solvable #1098
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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! 🙏` | |
| }); |