Skip to content

Commit

Permalink
Merge pull request #841 from nsidc/jhkennedy-patch-1
Browse files Browse the repository at this point in the history
For our monthly issue metrics, Include the date range in the title and label "metrics"
  • Loading branch information
jhkennedy authored Oct 4, 2024
2 parents 45270c1 + e9c671f commit b7e29ec
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/issue-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,15 @@ jobs:
SEARCH_QUERY: 'repo:${{ github.repository }} is:issue created:${{ env.last_month }} -reason:"not planned"'

- name: Create issue
id: create_issue
uses: peter-evans/create-issue-from-file@v5
with:
title: Monthly issue metrics report
title: "Monthly issue metrics report: ${{ env.last_month }}"
labels: metrics
token: ${{ secrets.GITHUB_TOKEN }}
content-filepath: ./issue_metrics.md

- name: Close Issue
run: gh issue close "${{steps.create_issue.outputs.issue-number}}" --reason "not planned"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b7e29ec

Please sign in to comment.