From b060d70a48fce78d19902b3b6c905602a3cada99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Sun, 18 May 2025 11:29:45 +0200 Subject: [PATCH] chore: Fix duplicates job --- .github/workflows/playground.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/workflows/playground.sh diff --git a/.github/workflows/playground.sh b/.github/workflows/playground.sh new file mode 100644 index 000000000..32474e905 --- /dev/null +++ b/.github/workflows/playground.sh @@ -0,0 +1,4 @@ +number=${{ env.number }} +issues=$(gh issue list --search 'Unable to play video' --json number,title,url | jq --arg num "$number" -r 'map(select(.number != ($num | tonumber))) | .[] | "- [" + .title + "](" + .url + ")"') + +echo -e "Thanks for reporting @${{ evn.author }}.\nPlease check if this could be a duplicate of one of these issues:\n$issues"