.github/workflows/main.yml #17
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: Assign issue to user and set status to Backlog | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
assign-to-user: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Assign to user | |
uses: peter-evans/assignee@v2.1.0 | |
with: | |
assignee: dominikpavlicek | |
- name: Set status to Backlog | |
uses: peter-evans/create-issue-comment@v1.5.2 | |
with: | |
body: 'status: Backlog' |