Skip to content

Commit

Permalink
Merge pull request #867 from jhkennedy/fix-issue-metrics
Browse files Browse the repository at this point in the history
Fix monthly issue metrics workflow
  • Loading branch information
jhkennedy authored Nov 6, 2024
2 parents 750de42 + c460d8e commit daf6924
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/issue-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

permissions:
contents: read
issues: write

jobs:
build:
Expand Down Expand Up @@ -44,6 +45,9 @@ jobs:
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 }}
run: |
gh issue close "${{steps.create_issue.outputs.issue-number}}" \
--reason "not planned" \
--repo ${{ github.repository }}

0 comments on commit daf6924

Please sign in to comment.