606 lines
27 KiB
JSON
606 lines
27 KiB
JSON
{
|
|
"parsing-errors": [
|
|
{
|
|
"expr": "1 <",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected end of expression: '<'. Located at position 3 within expression: 1 <"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 < )",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: ')'. Located at position 5 within expression: 1 < )"
|
|
}
|
|
},
|
|
{
|
|
"expr": "> 1",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '>'. Located at position 1 within expression: > 1"
|
|
}
|
|
},
|
|
{
|
|
"expr": "github.()",
|
|
"contexts": { "github": { "sha": "abc123" } },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '('. Located at position 8 within expression: github.()"
|
|
}
|
|
},
|
|
{
|
|
"expr": "endswith(1, 2 a)",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: 'a'. Located at position 15 within expression: endswith(1, 2 a)"
|
|
}
|
|
},
|
|
{
|
|
"expr": "(1,",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: ','. Located at position 3 within expression: (1,"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 2",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '2'. Located at position 3 within expression: 1 2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "(1)2",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '2'. Located at position 4 within expression: (1)2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "tojson(1)2",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '2'. Located at position 10 within expression: tojson(1)2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "foo 2",
|
|
"contexts": { "foo": "bar" },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '2'. Located at position 5 within expression: foo 2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "foo.bar 2",
|
|
"contexts": { "foo": "bar" },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '2'. Located at position 9 within expression: foo.bar 2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "foo['bar']2",
|
|
"contexts": { "foo": "bar" },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected symbol: '2'. Located at position 11 within expression: foo['bar']2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "nonExistentFunction()",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unrecognized function: 'nonExistentFunction'. Located at position 1"
|
|
}
|
|
},
|
|
{
|
|
"expr": "false && nonExistentFunction()",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unrecognized function: 'nonExistentFunction'. Located at position 1"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 = < 2",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '='. Located at position 3 within expression: 1 = < 2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 & < 2",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '&'. Located at position 3 within expression: 1 & < 2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 | < 2",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '|'. Located at position 3 within expression: 1 | < 2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 =2 =3",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '=2'. Located at position 3 within expression: 1 =2 =3"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 &2 &3",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '&2'. Located at position 3 within expression: 1 &2 &3"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 |2 |3",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '|2'. Located at position 3 within expression: 1 |2 |3"
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 @abc 2",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '@abc'. Located at position 3 within expression: 1 @abc 2"
|
|
}
|
|
},
|
|
{
|
|
"expr": "'foo",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: ''foo'. Located at position 1 within expression: 'foo"
|
|
}
|
|
},
|
|
{
|
|
"expr": "fromjson(a,b ",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unrecognized named-value: 'a'. Located at position 10 within expression: fromjson(a,b "
|
|
}
|
|
},
|
|
{
|
|
"expr": " true ||( false && false",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unexpected end of expression: 'false'. Located at position 20 within expression: true ||( false && false"
|
|
}
|
|
},
|
|
{
|
|
"expr": "😊 Emoji!! (unicode)",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '😊'. Located at position 1 within expression: 😊 Emoji!! (unicode)"
|
|
}
|
|
},
|
|
{
|
|
"expr": "github.event_name == 'push'\n && !contains(env.COMMIT_MESSAGES)",
|
|
"contexts": { "github": { "event_name": "push" }},
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unrecognized named-value: 'env'. Located at position 43 within expression: github.event_name == 'push'\n && !contains(env.COMMIT_MESSAGES)"
|
|
},
|
|
"options": {
|
|
"skip": ["typescript"]
|
|
}
|
|
},
|
|
{
|
|
"expr": "github.event_name == 'push' \n&& true\n&& !contains(env.COMMIT_MESSAGES)",
|
|
"contexts": { "github": { "event_name": "push" }},
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unrecognized named-value: 'env'. Located at position 51 within expression: github.event_name == 'push' \n&& true\n&& !contains(env.COMMIT_MESSAGES)"
|
|
},
|
|
"options": {
|
|
"skip": ["typescript"]
|
|
}
|
|
},
|
|
{
|
|
"expr": "github.event_name == 'push' \n&& true\n&& true\n&& !contains(env.COMMIT_MESSAGES)",
|
|
"contexts": { "github": { "event_name": "push" }},
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unrecognized named-value: 'env'. Located at position 59 within expression: github.event_name == 'push' \n&& true\n&& true\n&& !contains(env.COMMIT_MESSAGES)"
|
|
},
|
|
"options": {
|
|
"skip": ["typescript"]
|
|
}
|
|
},
|
|
{
|
|
"expr": "github.event_name == 'push' \n&& true\n&& true\n&& true\n&& !contains(env.COMMIT_MESSAGES)",
|
|
"contexts": { "github": { "event_name": "push" }},
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Unrecognized named-value: 'env'. Located at position 67 within expression: github.event_name == 'push' \n&& true\n&& true\n&& true\n&& !contains(env.COMMIT_MESSAGES)"
|
|
},
|
|
"options": {
|
|
"skip": ["typescript"]
|
|
}
|
|
},
|
|
{
|
|
"expr": "1 && ..github/workflow.md",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '..github/workflow.md'. Located at position 6 within expression: 1 && ..github/workflow.md"
|
|
}
|
|
},
|
|
{
|
|
"expr": "..github/workflow.md",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '..github/workflow.md'. Located at position 1 within expression: ..github/workflow.md"
|
|
}
|
|
},
|
|
{
|
|
"expr": ".github/workflow.md",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '.github/workflow.md'. Located at position 1 within expression: .github/workflow.md"
|
|
}
|
|
},
|
|
{
|
|
"expr": ".github/workflow",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '.github/workflow'. Located at position 1 within expression: .github/workflow"
|
|
}
|
|
},
|
|
{
|
|
"expr": "github/workflow.md",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: 'github/workflow'. Located at position 1 within expression: github/workflow.md"
|
|
}
|
|
},
|
|
{
|
|
"expr": "..github/workflow.md && 1",
|
|
"err": {
|
|
"kind": "lexing",
|
|
"value": "Unexpected symbol: '..github/workflow.md'. Located at position 1 within expression: ..github/workflow.md && 1"
|
|
}
|
|
}
|
|
],
|
|
"depth-errors": [
|
|
{
|
|
"expr": "!!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!!! false",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "!!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!!! !!!! false",
|
|
"result": { "kind": "Boolean", "value": true }
|
|
},
|
|
{
|
|
"expr": "foo._1._2._3._4._5._6._7._8._9._10._11._12._13._14._15._16._17._18._19._20._21._22._23._24._25._26._27._28._29._30._31._32._33._34._35._36._37._38._39._40._41._42._43._44._45._46._47._48._49._50",
|
|
"contexts": { "foo": null },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "foo._1._2._3._4._5._6._7._8._9._10._11._12._13._14._15._16._17._18._19._20._21._22._23._24._25._26._27._28._29._30._31._32._33._34._35._36._37._38._39._40._41._42._43._44._45._46._47._48._49",
|
|
"contexts": { "foo": null },
|
|
"result": { "kind": "Null", "value": null }
|
|
},
|
|
{
|
|
"expr": "foo .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.*",
|
|
"contexts": { "foo": null },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "foo .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*.* .*.*.*.*",
|
|
"contexts": { "foo": null },
|
|
"result": { "kind": "Array", "value": [] }
|
|
},
|
|
{
|
|
"expr": "foo[1][2][3][4][5][6][7][8][9][10][11][12][13][14][15][16][17][18][19][20][21][22][23][24][25][26][27][28][29][30][31][32][33][34][35][36][37][38][39][40][41][42][43][44][45][46][47][48][49][50]",
|
|
"contexts": { "foo": null },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "foo[1][2][3][4][5][6][7][8][9][10][11][12][13][14][15][16][17][18][19][20][21][22][23][24][25][26][27][28][29][30][31][32][33][34][35][36][37][38][39][40][41][42][43][44][45][46][47][48][49]",
|
|
"contexts": { "foo": null },
|
|
"result": { "kind": "Null", "value": null }
|
|
},
|
|
{
|
|
"expr": "foo [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*]",
|
|
"contexts": { "foo": null },
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "foo [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*][*] [*][*][*][*]",
|
|
"contexts": { "foo": null },
|
|
"result": { "kind": "Array", "value": [] }
|
|
},
|
|
{
|
|
"expr": "fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( 1 )))))))))) )))))))))) )))))))))) )))))))))) ))))))))))",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson( fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson(tojson(fromjson( '1' ))))))))) )))))))))) )))))))))) )))))))))) ))))))))))",
|
|
"result": { "kind": "Number", "value": 1 }
|
|
},
|
|
{
|
|
"expr": "format('depth3'||format('depth5'||format('depth7'||format('depth9'||format('depth11'||format('depth13'||format('depth15'||format('depth17'||format('depth19'||format('depth21'||format('depth23'||format('depth25'||format('depth27'||format('depth29'||format('depth31'||format('depth33'||format('depth35'||format('depth37'||format('depth39'||format('depth41'||format('depth43'||format('depth45'||format('depth47'||format('depth49'||format('depth51'||'depth51')))))))))) )))))))))) )))))",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "format('depth3'||format('depth5'||format('depth7'||format('depth9'||format('depth11'||format('depth13'||format('depth15'||format('depth17'||format('depth19'||format('depth21'||format('depth23'||format('depth25'||format('depth27'||format('depth29'||format('depth31'||format('depth33'||format('depth35'||format('depth37'||format('depth39'||format('depth41'||format('depth43'||format('depth45'||format('depth47'||format('depth49'||format('depth50')))))))))) )))))))))) )))))",
|
|
"result": { "kind": "String", "value": "depth3" }
|
|
},
|
|
{
|
|
"expr": "format('depth3'&&format('depth5'&&format('depth7'&&format('depth9'&&format('depth11'&&format('depth13'&&format('depth15'&&format('depth17'&&format('depth19'&&format('depth21'&&format('depth23'&&format('depth25'&&format('depth27'&&format('depth29'&&format('depth31'&&format('depth33'&&format('depth35'&&format('depth37'&&format('depth39'&&format('depth41'&&format('depth43'&&format('depth45'&&format('depth47'&&format('depth49'&&format('depth51'&&'depth51')))))))))) )))))))))) )))))",
|
|
"err": {
|
|
"kind": "parsing",
|
|
"value": "Exceeded max expression depth 50"
|
|
}
|
|
},
|
|
{
|
|
"expr": "format('depth3'&&format('depth5'&&format('depth7'&&format('depth9'&&format('depth11'&&format('depth13'&&format('depth15'&&format('depth17'&&format('depth19'&&format('depth21'&&format('depth23'&&format('depth25'&&format('depth27'&&format('depth29'&&format('depth31'&&format('depth33'&&format('depth35'&&format('depth37'&&format('depth39'&&format('depth41'&&format('depth43'&&format('depth45'&&format('depth47'&&format('depth49'&&format('depth50')))))))))) )))))))))) )))))",
|
|
"result": { "kind": "String", "value": "depth50" }
|
|
},
|
|
{
|
|
"expr": "1 || 2 || 3 || 4 || 5 || 6 || 7 || 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20 || 21 || 22 || 23 || 24 || 25 || 26 || 27 || 28 || 29 || 30 || 31 || 32 || 33 || 34 || 35 || 36 || 37 || 38 || 39 || 40 || 41 || 42 || 43 || 44 || 45 || 46 || 47 || 48 || 49 || 50 || 51 || 52 || 53 || 54 || 55 || 56 || 57 || 58 || 59 || 60",
|
|
"result": { "kind": "Number", "value": 1 }
|
|
},
|
|
{
|
|
"expr": "1 && 2 && 3 && 4 && 5 && 6 && 7 && 8 && 9 && 10 && 11 && 12 && 13 && 14 && 15 && 16 && 17 && 18 && 19 && 20 && 21 && 22 && 23 && 24 && 25 && 26 && 27 && 28 && 29 && 30 && 31 && 32 && 33 && 34 && 35 && 36 && 37 && 38 && 39 && 40 && 41 && 42 && 43 && 44 && 45 && 46 && 47 && 48 && 49 && 50 && 51 && 52 && 53 && 54 && 55 && 56 && 57 && 58 && 59 && 60",
|
|
"result": { "kind": "Number", "value": 60 }
|
|
},
|
|
{
|
|
"expr": "1 && 2 || 3 && 4 || 5 && 6 || 7 && 8 || 9 && 10 || 11 && 12 || 13 && 14 || 15 && 16 || 17 && 18 || 19 && 20 || 21 && 22 || 23 && 24 || 25 && 26 || 27 && 28 || 29 && 30 || 31 && 32 || 33 && 34 || 35 && 36 || 37 && 38 || 39 && 40 || 41 && 42 || 43 && 44 || 45 && 46 || 47 && 48 || 49 && 50 || 51 && 52 || 53 && 54 || 55 && 56 || 57 && 58 || 59 && 60",
|
|
"result": { "kind": "Number", "value": 2 }
|
|
}
|
|
],
|
|
"memory-errors": [
|
|
{
|
|
"options": {
|
|
"skip": ["typescript"]
|
|
},
|
|
"expr": "startswith(format('{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}', tojson(github)), format('{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}{0}', tojson(github)))",
|
|
"contexts": {
|
|
"github": {
|
|
"ref": "refs/heads/main",
|
|
"sha": "2ce6b095f4cceb616efed52266e3e3c0367ba795",
|
|
"repository": "monalisa/testing",
|
|
"repository_owner": "monalisa",
|
|
"repository_owner_id": "12102068",
|
|
"repositoryUrl": "git://github.com/monalisa/testing.git",
|
|
"run_id": "2827197126",
|
|
"run_number": "845",
|
|
"retention_days": "90",
|
|
"run_attempt": "1",
|
|
"artifact_cache_size_limit": "10",
|
|
"repository_visibility": "public",
|
|
"repository_id": "1",
|
|
"actor_id": "1",
|
|
"actor": "monalisa",
|
|
"triggering_actor": "monalisa",
|
|
"workflow": "CI",
|
|
"head_ref": "",
|
|
"base_ref": "",
|
|
"event_name": "push",
|
|
"event": {
|
|
"after": "2ce6b095f4cceb616efed52266e3e3c0367ba795",
|
|
"base_ref": null,
|
|
"before": "bbe29778fdad33232cd67bd84205d334b94412d7",
|
|
"commits": [
|
|
{
|
|
"author": {
|
|
"email": "monalisa@users.noreply.github.com",
|
|
"name": "mona",
|
|
"username": "monalisa"
|
|
},
|
|
"committer": {
|
|
"email": "noreply@github.com",
|
|
"name": "GitHub",
|
|
"username": "web-flow"
|
|
},
|
|
"distinct": true,
|
|
"id": "2ce6b095f4cceb616efed52266e3e3c0367ba795",
|
|
"message": "Update main.yml",
|
|
"timestamp": "2022-08-09T12:40:12-05:00",
|
|
"tree_id": "0dfd49aedd0cc103865d00587df3d23aa6f571f7",
|
|
"url": "https://github.com/monalisa/testing/commit/2ce6b095f4cceb616efed52266e3e3c0367ba795"
|
|
}
|
|
],
|
|
"compare": "https://github.com/monalisa/testing/compare/bbe29778fdad...2ce6b095f4cc",
|
|
"created": false,
|
|
"deleted": false,
|
|
"forced": false,
|
|
"head_commit": {
|
|
"author": {
|
|
"email": "monalisa@users.noreply.github.com",
|
|
"name": "mona",
|
|
"username": "monalisa"
|
|
},
|
|
"committer": {
|
|
"email": "noreply@github.com",
|
|
"name21": "GitHub",
|
|
"username": "web-flow"
|
|
},
|
|
"distinct": true,
|
|
"id": "2ce6b095f4cceb616efed52266e3e3c0367ba795",
|
|
"message": "Update main.yml",
|
|
"timestamp": "2022-08-09T12:40:12-05:00",
|
|
"tree_id": "0dfd49aedd0cc103865d00587df3d23aa6f571f7",
|
|
"url": "https://github.com/monalisa/testing/commit/2ce6b095f4cceb616efed52266e3e3c0367ba795"
|
|
},
|
|
"pusher": {
|
|
"email": "monalisa@users.noreply.github.com",
|
|
"name": "monalisa"
|
|
},
|
|
"ref": "refs/heads/main",
|
|
"repository": {
|
|
"allow_forking": true,
|
|
"archive_url": "https://api.github.com/repos/monalisa/testing/{archive_format}{/ref}",
|
|
"archived": false,
|
|
"assignees_url": "https://api.github.com/repos/monalisa/testing/assignees{/user}",
|
|
"blobs_url": "https://api.github.com/repos/monalisa/testing/git/blobs{/sha}",
|
|
"branches_url": "https://api.github.com/repos/monalisa/testing/branches{/branch}",
|
|
"clone_url": "https://github.com/monalisa/testing.git",
|
|
"collaborators_url": "https://api.github.com/repos/monalisa/testing/collaborators{/collaborator}",
|
|
"comments_url": "https://api.github.com/repos/monalisa/testing/comments{/number}",
|
|
"commits_url": "https://api.github.com/repos/monalisa/testing/commits{/sha}",
|
|
"compare_url": "https://api.github.com/repos/monalisa/testing/compare/{base}...{head}",
|
|
"contents_url": "https://api.github.com/repos/monalisa/testing/contents/{+path}",
|
|
"contributors_url": "https://api.github.com/repos/monalisa/testing/contributors",
|
|
"created_at": 1516230842,
|
|
"default_branch": "main",
|
|
"deployments_url": "https://api.github.com/repos/monalisa/testing/deployments",
|
|
"description": null,
|
|
"disabled": false,
|
|
"downloads_url": "https://api.github.com/repos/monalisa/testing/downloads",
|
|
"events_url": "https://api.github.com/repos/monalisa/testing/events",
|
|
"fork": false,
|
|
"forks": 1,
|
|
"forks_count": 1,
|
|
"forks_url": "https://api.github.com/repos/monalisa/testing/forks",
|
|
"full_name": "monalisa/testing",
|
|
"git_commits_url": "https://api.github.com/repos/monalisa/testing/git/commits{/sha}",
|
|
"git_refs_url": "https://api.github.com/repos/monalisa/testing/git/refs{/sha}",
|
|
"git_tags_url": "https://api.github.com/repos/monalisa/testing/git/tags{/sha}",
|
|
"git_url": "git://github.com/monalisa/testing.git",
|
|
"has_downloads": true,
|
|
"has_issues": true,
|
|
"has_pages": false,
|
|
"has_projects": true,
|
|
"has_wiki": true,
|
|
"homepage": null,
|
|
"hooks_url": "https://api.github.com/repos/monalisa/testing/hooks",
|
|
"html_url": "https://github.com/monalisa/testing",
|
|
"id": 117904191,
|
|
"is_template": false,
|
|
"issue_comment_url": "https://api.github.com/repos/monalisa/testing/issues/comments{/number}",
|
|
"issue_events_url": "https://api.github.com/repos/monalisa/testing/issues/events{/number}",
|
|
"issues_url": "https://api.github.com/repos/monalisa/testing/issues{/number}",
|
|
"keys_url": "https://api.github.com/repos/monalisa/testing/keys{/key_id}",
|
|
"labels_url": "https://api.github.com/repos/monalisa/testing/labels{/name}",
|
|
"language": "Shell",
|
|
"languages_url": "https://api.github.com/repos/monalisa/testing/languages",
|
|
"license": null,
|
|
"master_branch": "main",
|
|
"merges_url": "https://api.github.com/repos/monalisa/testing/merges",
|
|
"milestones_url": "https://api.github.com/repos/monalisa/testing/milestones{/number}",
|
|
"mirror_url": null,
|
|
"name": "testing",
|
|
"node_id": "MDEwOlJlcG9zaXRvcnkxMTc5MDQxOTE=",
|
|
"notifications_url": "https://api.github.com/repos/monalisa/testing/notifications{?since,all,participating}",
|
|
"open_issues": 5,
|
|
"open_issues_count": 5,
|
|
"owner": {
|
|
"avatar_url": "https://avatars.githubusercontent.com/u/12102068?v=4",
|
|
"email": "monalisa@users.noreply.github.com",
|
|
"events_url": "https://api.github.com/users/monalisa/events{/privacy}",
|
|
"followers_url": "https://api.github.com/users/monalisa/followers",
|
|
"following_url": "https://api.github.com/users/monalisa/following{/other_user}",
|
|
"gists_url": "https://api.github.com/users/monalisa/gists{/gist_id}",
|
|
"gravatar_id": "",
|
|
"html_url": "https://github.com/monalisa",
|
|
"id": 12102068,
|
|
"login": "monalisa",
|
|
"name": "monalisa",
|
|
"node_id": "MDQ6VXNlcjEyMTAyMDY4",
|
|
"organizations_url": "https://api.github.com/users/monalisa/orgs",
|
|
"received_events_url": "https://api.github.com/users/monalisa/received_events",
|
|
"repos_url": "https://api.github.com/users/monalisa/repos",
|
|
"site_admin": true,
|
|
"starred_url": "https://api.github.com/users/monalisa/starred{/owner}{/repo}",
|
|
"subscriptions_url": "https://api.github.com/users/monalisa/subscriptions",
|
|
"type": "User",
|
|
"url": "https://api.github.com/users/monalisa"
|
|
},
|
|
"private": false,
|
|
"pulls_url": "https://api.github.com/repos/monalisa/testing/pulls{/number}",
|
|
"pushed_at": 1660066812,
|
|
"releases_url": "https://api.github.com/repos/monalisa/testing/releases{/id}",
|
|
"size": 611,
|
|
"ssh_url": "git@github.com:monalisa/testing.git",
|
|
"stargazers": 1,
|
|
"stargazers_count": 1,
|
|
"stargazers_url": "https://api.github.com/repos/monalisa/testing/stargazers",
|
|
"statuses_url": "https://api.github.com/repos/monalisa/testing/statuses/{sha}",
|
|
"subscribers_url": "https://api.github.com/repos/monalisa/testing/subscribers",
|
|
"subscription_url": "https://api.github.com/repos/monalisa/testing/subscription",
|
|
"svn_url": "https://github.com/monalisa/testing",
|
|
"tags_url": "https://api.github.com/repos/monalisa/testing/tags",
|
|
"teams_url": "https://api.github.com/repos/monalisa/testing/teams",
|
|
"topics": [],
|
|
"trees_url": "https://api.github.com/repos/monalisa/testing/git/trees{/sha}",
|
|
"updated_at": "2022-01-05T02:14:32Z",
|
|
"url": "https://github.com/monalisa/testing",
|
|
"visibility": "public",
|
|
"watchers": 1,
|
|
"watchers_count": 1,
|
|
"web_commit_signoff_required": false
|
|
},
|
|
"sender": {
|
|
"avatar_url": "https://avatars.githubusercontent.com/u/12102068?v=4",
|
|
"events_url": "https://api.github.com/users/monalisa/events{/privacy}",
|
|
"followers_url": "https://api.github.com/users/monalisa/followers",
|
|
"following_url": "https://api.github.com/users/monalisa/following{/other_user}",
|
|
"gists_url": "https://api.github.com/users/monalisa/gists{/gist_id}",
|
|
"gravatar_id": "",
|
|
"html_url": "https://github.com/monalisa",
|
|
"id": 12102068,
|
|
"login": "monalisa",
|
|
"node_id": "MDQ6VXNlcjEyMTAyMDY4",
|
|
"organizations_url": "https://api.github.com/users/monalisa/orgs",
|
|
"received_events_url": "https://api.github.com/users/monalisa/received_events",
|
|
"repos_url": "https://api.github.com/users/monalisa/repos",
|
|
"site_admin": true,
|
|
"starred_url": "https://api.github.com/users/monalisa/starred{/owner}{/repo}",
|
|
"subscriptions_url": "https://api.github.com/users/monalisa/subscriptions",
|
|
"type": "User",
|
|
"url": "https://api.github.com/users/monalisa"
|
|
}
|
|
},
|
|
"server_url": "https://github.com",
|
|
"api_url": "https://api.github.com",
|
|
"graphql_url": "https://api.github.com/graphql",
|
|
"ref_name": "main",
|
|
"ref_protected": false,
|
|
"ref_type": "branch",
|
|
"secret_source": "Actions",
|
|
"workspace": "/home/runner/work/testing/testing",
|
|
"action": "__run_2",
|
|
"event_path": "/home/runner/work/_temp/_github_workflow/event.json",
|
|
"action_repository": "",
|
|
"action_ref": "",
|
|
"path": "/home/runner/work/_temp/_runner_file_commands/add_path_04146e5b-5a26-490d-b886-886641aa5651",
|
|
"env": "/home/runner/work/_temp/_runner_file_commands/set_env_04146e5b-5a26-490d-b886-886641aa5651",
|
|
"step_summary": "/home/runner/work/_temp/_runner_file_commands/step_summary_04146e5b-5a26-490d-b886-886641aa5651"
|
|
}
|
|
},
|
|
"err": {
|
|
"kind": "evaluation",
|
|
"value": "The maximum allowed memory size was exceeded"
|
|
}
|
|
}
|
|
]
|
|
}
|