Issue metrics #12
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: Issue metrics | |
on: | |
workflow_dispatch: | |
permissions: | |
issues: write | |
pull-requests: read | |
jobs: | |
build: | |
name: issue metrics | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get dates for last month | |
shell: bash | |
run: | | |
# 検証のためハードコードする | |
echo "last_month=2022-07-01..2023-07-31" >> "$GITHUB_ENV" | |
- name: Get issue metrics repo | |
uses: github/issue-metrics@v2 | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SEARCH_QUERY: 'repo:Okabe-Junya/sandbox repo:Okabe-Junya/dotfiles is:issue created:${{ env.last_month }} -reason:"not planned"' | |
- name: Create issue | |
uses: peter-evans/create-issue-from-file@v4 | |
with: | |
title: Monthly issue metrics report | |
token: ${{ secrets.GITHUB_TOKEN }} | |
content-filepath: ./issue_metrics.md | |
assignees: Okabe-Junya |