Skip to content

Commit e14baff

Browse files
authored
Merge pull request #223 from github/v3-bumps
switch to v3
2 parents f407304 + b5aba8c commit e14baff

8 files changed

+11
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
7070
7171
- name: Run issue-metrics tool
72-
uses: github/issue-metrics@v2
72+
uses: github/issue-metrics@v3
7373
env:
7474
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7575
SEARCH_QUERY: 'repo:owner/repo is:issue created:${{ env.last_month }} -reason:"not planned"'

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: 'github'
44
description: 'A GitHub Action to report out issue metrics'
55
runs:
66
using: 'docker'
7-
image: 'docker://ghcr.io/github/issue_metrics:v2'
7+
image: 'docker://ghcr.io/github/issue_metrics:v3'
88
branding:
99
icon: 'check-square'
1010
color: 'white'

docs/assign-team-instead-of-individual.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
4747
4848
- name: Run issue-metrics tool
49-
uses: github/issue-metrics@v2
49+
uses: github/issue-metrics@v3
5050
env:
5151
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5252
SEARCH_QUERY: 'repo:owner/repo is:issue created:${{ env.last_month }} -reason:"not planned"'

docs/authenticating-with-github-app-installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
3939
4040
- name: Run issue-metrics tool
41-
uses: github/issue-metrics@v2
41+
uses: github/issue-metrics@v3
4242
env:
4343
GH_APP_ID: ${{ secrets.GITHUB_APP_ID }}
4444
GH_APP_INSTALLATION_ID: ${{ secrets.GITHUB_APP_INSTALLATION_ID }}

docs/example-using-json-instead-markdown-output.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: Run issue-metrics tool
2525
id: issue-metrics
26-
uses: github/issue-metrics@v2
26+
uses: github/issue-metrics@v3
2727
env:
2828
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
SEARCH_QUERY: 'repo:owner/repo is:issue created:2023-05-01..2023-05-31 -reason:"not planned"'

docs/example-workflows.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
3939
4040
- name: Run issue-metrics tool
41-
uses: github/issue-metrics@v2
41+
uses: github/issue-metrics@v3
4242
env:
4343
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
SEARCH_QUERY: 'repo:owner/repo is:issue created:${{ env.last_month }} -reason:"not planned"'
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777

7878
- name: Run issue-metrics tool
79-
uses: github/issue-metrics@v2
79+
uses: github/issue-metrics@v3
8080
env:
8181
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8282
SEARCH_QUERY: 'repo:owner/repo is:issue created:2023-05-01..2023-05-31 -reason:"not planned"'
@@ -126,7 +126,7 @@ jobs:
126126
echo "last_month=$first_day..$last_day" >> "$GITHUB_ENV"
127127
128128
- name: Get issue metrics
129-
uses: github/issue-metrics@v2
129+
uses: github/issue-metrics@v3
130130
env:
131131
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
132132
SEARCH_QUERY: 'repo:owner/repo1 repo:owner/repo2 is:issue created:${{ env.last_month }} -reason:"not planned"'

docs/measure-time.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626

2727
- name: Run issue-metrics tool
28-
uses: github/issue-metrics@v2
28+
uses: github/issue-metrics@v3
2929
env:
3030
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
LABELS_TO_MEASURE: 'waiting-for-manager-approval,waiting-for-security-review'

docs/search-query.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
steps:
6565

6666
- name: Run issue-metrics tool for issues and prs opened in May 2023
67-
uses: github/issue-metrics@v2
67+
uses: github/issue-metrics@v3
6868
env:
6969
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7070
SEARCH_QUERY: 'repo:owner/repo created:2023-05-01..2023-05-31 -reason:"not planned"'
@@ -78,7 +78,7 @@ jobs:
7878
assignees: <YOUR_GITHUB_HANDLE_HERE>
7979

8080
- name: Run issue-metrics tool for issues and prs closed in May 2023
81-
uses: github/issue-metrics@v2
81+
uses: github/issue-metrics@v3
8282
env:
8383
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8484
SEARCH_QUERY: 'repo:owner/repo closed:2023-05-01..2023-05-31 -reason:"not planned"'

0 commit comments

Comments
 (0)