Skip to content

Commit

Permalink
Merge pull request #24 from BillAnastasiadis/add_aging_table
Browse files Browse the repository at this point in the history
  • Loading branch information
ilausuch authored and github-actions[bot] committed Apr 27, 2022
2 parents 1bac25f + 6f1c3a8 commit bfe6b58
Show file tree
Hide file tree
Showing 3 changed files with 108 additions and 11 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/backlog_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,58 @@ jobs:
header: "Public Cloud Epics"


# Aging
- name: aging containers
if: always()
run: |
python backlog_checker.py aging tb_start
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: Containers"
header: "Aging tickets finished in the last 30 days"
category: "Aging of tickets"
category_description: |
Mesures the time since the ticket is created and the ticket is resolved
rowText: "Containers"
head: "Days to complete (Adv)"
- name: aging JeOS
if: always()
run: |
python backlog_checker.py aging
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: JeOS"
rowText: "JeOS"
head: "Days to complete (Adv)"
- name: aging WSL
if: always()
run: |
python backlog_checker.py aging
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: WSL"
rowText: "WSL"
head: "Days to complete (Adv)"
- name: aging Public Cloud
if: always()
run: |
python backlog_checker.py aging
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: Public Cloud"
rowText: "Public Cloud"
head: "Days to complete (Adv)"
- name: aging SLE Micro
if: always()
run: |
python backlog_checker.py aging tb_end
env:
key: ${{ secrets.REDMINE_API_KEY }}
query: "Finished In The Last 30 Days: SLE Micro"
rowText: "SLE Micro"
head: "Days to complete (Adv)"


- name: Footer
if: always()
run: |
Expand Down
Loading

0 comments on commit bfe6b58

Please sign in to comment.