We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d594d1 commit a7bb9c2Copy full SHA for a7bb9c2
.github/workflows/labeler-train.yml
@@ -45,6 +45,11 @@ on:
45
required: true
46
default: "staging"
47
48
+permissions:
49
+ issues: read
50
+ pull-requests: read
51
+ actions: write
52
+
53
jobs:
54
# Without specifying a pageSize of 1 for downloading pull requests, the requests time out
55
# Directly invoking the individual workflows until https://github.com/dotnet/issue-labeler/issues/97 is addressed
@@ -111,7 +116,7 @@ jobs:
111
116
with:
112
117
data_cache_key: ${{ inputs.cache_key_suffix }}
113
118
pull_limit: ${{ inputs.data_limit && fromJSON(inputs.data_limit) || 0 }}
114
- page_size: ${{ inputs.pull_page_size }}
119
+ page_size: ${{ inputs.pull_page_size && fromJSON(inputs.pull_page_size) || 1 }}
115
120
label_prefix: "area-"
121
122
labeler-train-pulls:
0 commit comments