mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
dea41bd1ed
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
25 lines
580 B
YAML
25 lines
580 B
YAML
name: Pick and assignee
|
|
description: "Pick an assignee"
|
|
|
|
outputs:
|
|
assignee:
|
|
description: "GitHub login of the assignee"
|
|
value: ${{ steps.pick-assignee.outputs.assignee }}
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Pick an assignee
|
|
id: pick-assignee
|
|
shell: bash
|
|
run: |
|
|
possibleAssignees=(
|
|
"katexochen"
|
|
"malt3"
|
|
"3u13r"
|
|
"daniel-weisse"
|
|
"derpsteb"
|
|
)
|
|
assignee=${possibleAssignees[$RANDOM % ${#possibleAssignees[@]}]}
|
|
echo "assignee=$assignee" | tee -a "$GITHUB_OUTPUT"
|