# action.yml
name: 'OSC Test'
description: 'Checkout the rpm and install run from osc'
inputs:
  osc-user:  # id of input
    description: 'Who is the osc user'
    required: true
    default: 'alexlau'
outputs:
  time: # id of output
    description: 'The time we greeted you'
runs:
  using: 'docker'
  image: 'Dockerfile'
  args:
    - ${{ inputs.osc-user}}
    - ${{ inputs.osc-path}}
    - ${{ inputs.osc-package}}