forked from redpanda-data/redpanda
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (23 loc) · 941 Bytes
/
old-backports.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: old-backports
on:
schedule:
- cron: '*/10 * * * *'
jobs:
alert-on-abandoned-backports:
outputs:
OUTPUT: ${{ steps.get-output.outputs.OUTPUT }}
runs-on: ubuntu-latest
steps:
- name: Get output
id: get-output
run: |
echo OUTPUT=$(gh search issues --label "kind/backport" --state open --repo "redpanda-data/redpanda" --updated "<`date --date="15 days ago" +"%Y"-"%m"-"%d"`" --sort updated --order asc --limit 15 --json "assignees,updatedAt,url" --jq '.[] | "@" + (.assignees[] | {login} | .login), .url, .updatedAt,"----"') >>"$GITHUB_OUTPUT"
shell: bash
- name: "Post to a test channel (temporary)"
id: send-slack-message
uses: slackapi/[email protected]
with:
channel-id: "C05DHDW4VCL"
slack-message: "Test: ${{ steps.get-output.outputs.OUTPUT }}"
env:
SLACK_BOT_TOKEN: ${{ secrets.VBOTBUILDOVICH_SLACK_BOT_TOKEN }}