From fe0af26496e2c5c0b12fb730d66ee2e71ba78df2 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 1 Jun 2023 11:47:20 -0700 Subject: [PATCH 1/5] docs: Add project description --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d2dbd98..2d6dec0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,11 @@ # Issue Metrics Action -TODO: repo description +This is a GitHub Action that searches for pull requests/issues in a repository and measures +the time to first response for each issue. It then calculates the average time +to first response and writes the issues with their time to first response to a +markdown file. The issues to search for can be filtered by using a search query. + +To find syntax for search queries, check out the [documentation](https://docs.github.com/en/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests). ## Support From 33d005fa9fe83e0243f72ccb101005cbb21507d9 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 1 Jun 2023 13:10:48 -0700 Subject: [PATCH 2/5] update python versions --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 55a7198..399e0a1 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, 3.11] + python-version: [3.10, 3.11] steps: - uses: actions/checkout@v3 From 5e457c0b061f629b2302796bd8a9262c0c9cd778 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 1 Jun 2023 13:14:08 -0700 Subject: [PATCH 3/5] Update python-package.yml --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 399e0a1..997dbf9 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.10, 3.11] + python-version: [3.12, 3.11] steps: - uses: actions/checkout@v3 From 2c796c4085d06248a9d016f8d8ef0e4cfdaceea9 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 1 Jun 2023 13:18:13 -0700 Subject: [PATCH 4/5] Update python-package.yml --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 997dbf9..297ff85 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.12, 3.11] + python-version: [3.11] steps: - uses: actions/checkout@v3 From 01456adda8f5c7bba16b1bde4b88dcecd84314eb Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Thu, 1 Jun 2023 13:20:18 -0700 Subject: [PATCH 5/5] update spelling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d6dec0..274d968 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This is a GitHub Action that searches for pull requests/issues in a repository and measures the time to first response for each issue. It then calculates the average time to first response and writes the issues with their time to first response to a -markdown file. The issues to search for can be filtered by using a search query. +Markdown file. The issues to search for can be filtered by using a search query. To find syntax for search queries, check out the [documentation](https://docs.github.com/en/issues/tracking-your-work-with-issues/filtering-and-searching-issues-and-pull-requests).