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 c310eb8 commit e22bcd0Copy full SHA for e22bcd0
plugin.js
@@ -19,7 +19,7 @@ const getParsedYaml = createParsedYamlRetriever(gh)
19
const nullYaml = 'kind: pipeline\nname: default\ntrigger:\n event:\n exclude: [ "*" ]'
20
21
const app = express()
22
-app.post('/', bodyParser.json(), async (req, res) => {
+app.post('/', bodyParser.json({limit: '50mb'}), async (req, res) => {
23
console.log('Processing...')
24
if (!req.headers.signature) return res.status(400).send('Missing signature')
25
if (!isValidSig(req, sharedKey)) return res.status(400).send('Invalid signature')
0 commit comments