Auto-close old community metrics issue(s) (Lombiq Technologies: OCORE-175) #6
Workflow file for this run
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
name: Community Metrics | |
on: | |
pull_request: | |
permissions: | |
issues: write | |
pull-requests: read | |
jobs: | |
generate-community-metrics: | |
name: Generate Community Metrics | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close Previous Issue | |
shell: pwsh | |
run: | | |
$issues = gh issue list --repo '${{ github.repository }}' --label 'community metrics' --state open --json number --jq '.[].number' | |
foreach ($issue in $issues) | |
{ | |
gh issue close $issue --comment 'Closing this issue as newer community metrics are available.' | |
} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |