New developer portal does not mention Ansible collection. Old developer portal links to deprecated role. #54
This file contains 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 assignee for Issues opened/reopened/edited. | |
on: | |
issues: | |
types: | |
- edited | |
- opened | |
- reopened | |
jobs: | |
issues: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for event name | |
run: echo "${{ github.event_name }}" | |
- name: Add assignees | |
uses: pozil/auto-assign-issue@v1 | |
with: | |
assignees: kavinagrawalcohesity | |
allowSelfAssign: True |