Skip to content

Monthly issue metrics #8

Monthly issue metrics

Monthly issue metrics #8

Workflow file for this run

---
name: Monthly issue metrics
on:
schedule:
- cron: "3 2 1 * *"
workflow_dispatch:
permissions: read-all
jobs:
monthly-issue-metrics:
name: Monthly issue metrics
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: read
steps:
- name: Get dates for last month
id: get_last_months_dates
shell: bash
run: |
# Calculate the first day of the previous month
first_day=$(date -d "last month" +%Y-%m-01)
# Calculate the last day of the previous month
last_day=$(date -d "$first_day +1 month -1 day" +%Y-%m-%d)
#Set an environment variable with the date range
echo "$first_day..$last_day"
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
- name: Run GitHub Issue Metrics action
id: run_github_issue_metrics
uses: github/issue-metrics@fb943469dfdf874406ad14932d7065941ea3355f # v3.2.5
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SEARCH_QUERY: 'repo:ministryofjustice/data-platform is:issue created:${{ env.last_month }} -reason:"not planned"'
- name: Create issue
id: create_issue
uses: peter-evans/create-issue-from-file@24452a72d85239eacf1468b0f1982a9f3fec4c94 # v5.0.0
with:
title: Monthly issue metrics report
token: ${{ secrets.GITHUB_TOKEN }}
content-filepath: ./issue_metrics.md