-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create GH workflow to generate github metrics
- Loading branch information
1 parent
253652d
commit 76f7ceb
Showing
1 changed file
with
119 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
name: Monthly metrics | ||
# on: | ||
# workflow_dispatch: | ||
# schedule: | ||
# - cron: '3 2 1 * *' | ||
on: [pull_request] | ||
|
||
jobs: | ||
build: | ||
name: issue metrics | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Get dates for last month | ||
shell: bash | ||
run: | | ||
# Get the current date | ||
current_date=$(date +'%Y-%m-%d') | ||
# Calculate the previous month | ||
previous_date=$(date -d "$current_date -1 month" +'%Y-%m-%d') | ||
|
||
# Put the report month and year in the environment | ||
echo report_month="$(date -d "$previous_date" +'%B') $(date -d "$previous_date" +'%Y')" >> "$GITHUB_ENV" | ||
|
||
# Extract the year and month from the previous date | ||
previous_year=$(date -d "$previous_date" +'%Y') | ||
previous_month=$(date -d "$previous_date" +'%m') | ||
|
||
# Calculate the first day of the previous month | ||
first_day=$(date -d "$previous_year-$previous_month-01" +'%Y-%m-%d') | ||
|
||
# Calculate the last day of the previous month | ||
last_day=$(date -d "$first_day +1 month -1 day" +'%Y-%m-%d') | ||
|
||
echo "$first_day..$last_day" | ||
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV" | ||
|
||
# Issues | ||
|
||
- name: Run issue-metrics tool for issues opened last month | ||
uses: github/issue-metrics@v2 | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:issue created:${{ env.last_month }}' | ||
HIDE_TIME_TO_ANSWER: true | ||
|
||
- name: Create issue | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: Issues Opened in ${{ env.report_month }} | ||
content-filepath: ./issue_metrics.md | ||
|
||
- name: Run issue-metrics tool for issues closed last month | ||
uses: github/issue-metrics@v2 | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:issue closed:${{ env.last_month }}' | ||
HIDE_TIME_TO_ANSWER: true | ||
|
||
- name: Create issue | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: Issues Closed in ${{ env.report_month }} | ||
content-filepath: ./issue_metrics.md | ||
|
||
# PRs | ||
|
||
- name: Run issue-metrics tool for PRs opened last month | ||
uses: github/issue-metrics@v2 | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:pull-request created:${{ env.last_month }}' | ||
HIDE_TIME_TO_ANSWER: true | ||
|
||
- name: Create issue | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: PRs Opened in ${{ env.report_month }} | ||
content-filepath: ./issue_metrics.md | ||
|
||
- name: Run issue-metrics tool for PRs closed last month | ||
uses: github/issue-metrics@v2 | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php is:pull-request closed:${{ env.last_month }}' | ||
HIDE_TIME_TO_ANSWER: true | ||
|
||
- name: Create issue | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: PRs Closed in ${{ env.report_month }} | ||
content-filepath: ./issue_metrics.md | ||
|
||
# Discussions | ||
|
||
- name: Run issue-metrics tool for discussions opened last month | ||
uses: github/issue-metrics@v2 | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php type:discussions created:${{ env.last_month }}' | ||
|
||
- name: Create issue | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: Discussions Opened in ${{ env.report_month }} | ||
content-filepath: ./issue_metrics.md | ||
|
||
- name: Run issue-metrics tool for discussions closed last month | ||
uses: github/issue-metrics@v2 | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
SEARCH_QUERY: 'org:appwrite org:open-runtimes org:utopia-php type:discussions closed:${{ env.last_month }}' | ||
|
||
- name: Create issue | ||
uses: peter-evans/create-issue-from-file@v4 | ||
with: | ||
title: Discussions Closed in ${{ env.report_month }} | ||
content-filepath: ./issue_metrics.md |