This repository was archived by the owner on Apr 9, 2026. It is now read-only.
[Genel] Tick fonksiyonunda return kullanıyorum ama hareket donuyor #2
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 Logic Bug Detector (Return) - Datapack | |
| on: | |
| issues: | |
| types: [opened, edited] # İstersen sadece [opened] yapabilirsin | |
| permissions: | |
| issues: write | |
| jobs: | |
| detect-return-logic: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Detect return-related logic bugs | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const script = require('./.github/scripts/detect-return-logic.js'); | |
| await script({ github, context }); |