27 lines
660 B
YAML
27 lines
660 B
YAML
include-source: false # Drop file/line/col from output
|
|
max-result-size: 2048
|
|
skip:
|
|
- Go
|
|
---
|
|
on: push
|
|
jobs:
|
|
build-0: { uses: contoso/templates/.github/workflows/deploy.yml@v1 }
|
|
build-1: { uses: contoso/templates/.github/workflows/deploy.yml@v1 }
|
|
---
|
|
contoso/templates/.github/workflows/deploy.yml@v1
|
|
---
|
|
on: workflow_call
|
|
jobs:
|
|
job1:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo Deploying...
|
|
---
|
|
{
|
|
"errors": [
|
|
{
|
|
"Message": "In .github/workflows/errors-reusable-workflow-max-result-size.yml (Line: 4, Col: 20): Error from called workflow contoso/templates/.github/workflows/deploy.yml@v1: Maximum object size exceeded"
|
|
}
|
|
]
|
|
}
|