old-backports #11121
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: 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 }} |