Mod blocks keybinding for the wrench at the production point #4
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: Auto-assign issues to owner | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| permissions: | |
| issues: write | |
| jobs: | |
| assign: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Assign issue to repository owner | |
| uses: pozil/auto-assign-issue@v2 | |
| with: | |
| assignees: ${{ github.repository_owner }} |