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 2ce86ab commit c5347fbCopy full SHA for c5347fb
.github/workflows/missing-documentation-reminder.yml
@@ -2,10 +2,9 @@ name: Missing Documentation Reminder
2
3
on:
4
workflow_dispatch:
5
- pull_request:
6
- types:
7
- - edited
8
- - closed
+ push:
+ branches:
+ - main
9
10
jobs:
11
find-missing-documentation:
@@ -23,7 +22,7 @@ jobs:
23
22
with:
24
script: |
25
26
- const query = `repo:makspll/bevy_mod_scripting is:pr is:merged is:closed label:"needs documentation"`;
+ const query = `repo:makspll/bevy_mod_scripting is:closed label:"needs documentation"`;
27
const encodedQuery = encodeURIComponent(query);
28
29
console.log(encodedQuery);
0 commit comments