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 ea2b375 commit 419f4dfCopy full SHA for 419f4df
1 file changed
pages/api/github.ts
@@ -30,6 +30,14 @@ ${req.body.short_description}
30
31
${req.body.potential_impact}
32
33
+### Other Organizations Applied To
34
+
35
+${
36
+ req.body.organizations
37
+ ? `This application was submitted to: ${req.body.organizations.join(', ')}`
38
+ : 'No organizations specified'
39
+}
40
41
### Timeline & Milestones
42
43
${req.body.duration ? `Grant duration: ${req.body.duration}` : ''}
@@ -78,6 +86,11 @@ ${
78
86
issueLabels.push('bitcoin') // L1 & L2 = subset of Bitcoin
79
87
}
80
88
89
+ // Add label for applications from common grant app
90
+ if (req.body.source === 'common-grant-app') {
91
+ issueLabels.push('common-grant-app')
92
+ }
93
81
94
// Repo set according to "main focus"
82
95
let appRepo = GH_APP_REPO
83
96
if (mainFocus === 'nostr') {
0 commit comments