- has_with had undetected structure error now failing the schema - empty_step and has_secrets are invalid and caught by the schema there no longer is a need for them
16 lines
261 B
YAML
16 lines
261 B
YAML
name: test
|
|
jobs:
|
|
job1:
|
|
name: job1
|
|
runs-on: linux
|
|
secrets:
|
|
secret: hideme
|
|
steps:
|
|
- uses: .gitea/workflows/build.yml
|
|
|
|
job2:
|
|
name: job2
|
|
runs-on: linux
|
|
secrets: inherit
|
|
steps:
|
|
- uses: .gitea/workflows/build.yml
|