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.
2 parents 4f7ad36 + e22bcd0 commit bf03ae6Copy full SHA for bf03ae6
plugin.js
@@ -19,7 +19,7 @@ const getParsedYaml = createParsedYamlRetriever(gh)
19
const nullYaml = index => `kind: pipeline\nname: default_${index}\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