Skip to content

Commit

Permalink
docs(schema): add runs_on to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
NikitaCOEUR committed Jul 8, 2024
1 parent 891baef commit e21e74f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions schema/tfaction-root.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
"providers_lock_opts": {
"$ref": "#/$defs/TerraformProvidersLockOptions"
},
"runs_on": {
"$ref": "#/$defs/RunsOn"
},
"s3_bucket_name_tfmigrate_history": {
"$ref": "#/$defs/S3BucketNameTfmigrateHistory"
},
Expand Down Expand Up @@ -398,12 +401,19 @@
},
"envs": {
"$ref": "#/$defs/Envs"
},
"runs_on": {
"$ref": "#/$defs/RunsOn"
}
}
},
"Envs": {
"type": "object",
"description": "environment variables"
},
"RunsOn": {
"type": ["string", "array"],
"description": "The type of runner that the job will run on"
}
}
}

0 comments on commit e21e74f

Please sign in to comment.