You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This workflow searches for the issues created between 2023-05-01..2023-05-31, and generates an issue with metrics.
94
+
95
+
```yaml
96
+
name: Monthly issue metrics
97
+
on:
98
+
workflow_dispatch:
99
+
44
100
jobs:
45
101
build:
46
102
name: issue metrics
@@ -85,7 +141,7 @@ Both issues and pull requests opened in May 2023:
85
141
Both issues and pull requests closed in May 2023 (may have been open in May or earlier):
86
142
-`closed:2023-05-01..2023-05-31`
87
143
88
-
OK, but what if I want both open or closed issues and pull requests? Due to limitations in issue search (no ability for an or pattern), you will need to run the action twice, once for opened and once for closed. Here is an example workflow that does this:
144
+
OK, but what if I want both open or closed issues and pull requests? Due to limitations in issue search (no ability for OR logic), you will need to run the action twice, once for opened and once for closed. Here is an example workflow that does this:
0 commit comments