Coin lands edge-on due to incorrect --flip-x rotation offset #19
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: | | |
| github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: | | |
| ⚠️ **Important Contribution Guideline** | |
| 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 | |
| **Note:** PRs raised without prior assignment may be closed or marked invalid. | |
| Thank you for helping us maintain a smooth workflow! 🙏 | |
| }) |