[READ-ONLY] Mirror of https://github.com/jmrplens/Autotest. Aplicación desarrollada con Excel y VBA para realizar exámenes tipo test automáticamente.
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: skip self-assignment in auto-assign workflow (#2)

authored by

José M. Requena Plens and committed by
GitHub
(Jun 29, 2026, 2:24 PM +0200) 39dbee02 707ac15b

+8 -1
+8 -1
.github/workflows/auto-assign.yml
··· 12 12 permissions: 13 13 issues: write 14 14 pull-requests: write 15 + if: >- 16 + (github.event_name == 'issues' && github.event.issue.user.login != 'jmrplens') || 17 + (github.event_name == 'pull_request' && github.event.pull_request.user.login != 'jmrplens') 15 18 steps: 16 19 - name: Assign to jmrplens 17 20 env: ··· 19 22 REPO: ${{ github.repository }} 20 23 NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }} 21 24 run: | 22 - gh api --method POST -H "Accept: application/vnd.github+json" /repos/$REPO/issues/$NUMBER/assignees -f assignees[]=jmrplens 25 + gh api \ 26 + --method POST \ 27 + -H "Accept: application/vnd.github+json" \ 28 + /repos/$REPO/issues/$NUMBER/assignees \ 29 + -f assignees[]=jmrplens