monthly-repo-metrics #11
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
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". | |
name: monthly-repo-metrics | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: 0 2 1 * * | |
jobs: | |
build: | |
name: metrics | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: read | |
if: github.repository == 'awslabs/generative-ai-cdk-constructs' | |
steps: | |
- name: Get dates for last month | |
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: Report on issues | |
uses: github/issue-metrics@6bc5254e72971dbb7462db077779f1643f772afd | |
env: | |
GH_TOKEN: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
SEARCH_QUERY: repo:awslabs/generative-ai-cdk-constructs is:issue created:${{ env.last_month }} -reason:"not planned" | |
- name: Create report for issues | |
uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f | |
with: | |
title: Monthly issue metrics report | |
token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
content-filepath: ./issue_metrics.md | |
assignees: krokoko | |
labels: auto-approve | |
- name: Report on PRs | |
uses: github/issue-metrics@6bc5254e72971dbb7462db077779f1643f772afd | |
env: | |
GH_TOKEN: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
SEARCH_QUERY: repo:awslabs/generative-ai-cdk-constructs is:pr created:${{ env.last_month }} -is:draft | |
- name: Create report for PRs | |
uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f | |
with: | |
title: Monthly issue metrics report | |
token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
content-filepath: ./issue_metrics.md | |
assignees: krokoko | |
labels: auto-approve |