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 3a4632a commit 10fdfbfCopy full SHA for 10fdfbf
core/index.ts
@@ -8,13 +8,13 @@ const ALLOWED_REPO = ['vitejs/rfcs']
8
export async function runAction(context: Context) {
9
const { octokit, event } = context
10
11
- info({ event })
12
-
13
- if (!('pull_request' in event && (event.action === 'opened' || event.action === 'reopened')))
+ if (!('pull_request' in event && event.action === 'opened'))
14
return
15
if (!ALLOWED_REPO.includes(event.repository.full_name))
16
17
+ info({ event })
+
18
const { pull_request } = event
19
20
const files_url = `${pull_request.url}/files`
0 commit comments