mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-15 02:45:23 +00:00
13 lines
250 B
YAML
13 lines
250 B
YAML
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
image:
|
|
description: 'Image to test'
|
|
required: true
|
|
|
|
jobs:
|
|
test-image:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
echo ding ding testing ${{ github.event.inputs.image }}
|