Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions workflows/issue-triage/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,16 @@ runs:
env:
GH_TOKEN: ${{ inputs.GH_TOKEN }}
ISSUE_URL: ${{ github.event.issue.html_url }}
run: |
BODY=$(cat <<'EOF'
Thanks for opening this issue! 🎉
COMMENT_BODY: |
Thanks for opening this issue! 🎉

A maintainer will triage it within 5 business days. You can learn more about our issue workflow in the [Issue Lifecycle documentation](https://github.com/cloudoperators/common/blob/main/ISSUE_LIFECYCLE.md).
A maintainer will triage it within 5 business days. You can learn more about our issue workflow in the [Issue Lifecycle documentation](https://github.com/cloudoperators/common/blob/main/ISSUE_LIFECYCLE.md).

In the meantime, please make sure you have provided:
- A clear problem statement
- Steps to reproduce (for bugs)
- Expected vs actual behavior
In the meantime, please make sure you have provided:
- A clear problem statement
- Steps to reproduce (for bugs)
- Expected vs actual behavior

This helps us route your issue faster.
EOF
)
gh issue comment "$ISSUE_URL" --body "$BODY"
This helps us route your issue faster.
run: |
gh issue comment "$ISSUE_URL" --body "$COMMENT_BODY"