Introduced a fixed mask length for password redaction, ensuring consistent output regardless of input length. #4
Workflow file for this run
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 and pull requests | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| pull_request: | |
| types: | |
| - opened | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: Assign issues and pull requests | |
| uses: gustavofreze/auto-assign@2.1.0 | |
| with: | |
| assignees: '${{ vars.ASSIGNEES }}' | |
| github_token: '${{ secrets.GITHUB_TOKEN }}' | |
| allow_self_assign: 'true' | |
| allow_no_assignees: 'true' | |
| assignment_options: 'ISSUE,PULL_REQUEST' |