Skip to content

Commit

Permalink
adding externallu run workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-pejovic committed Jan 20, 2025
1 parent 9f7e655 commit d2f2a32
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Example Workflow

on:
workflow_dispatch:
inputs:
param1:
description: "Parameter 1"
required: false
default: "default-value"

jobs:
example_job:
runs-on: ubuntu-latest
steps:
- name: Print Input
run: echo ${{ github.event.inputs.param1 }}

0 comments on commit d2f2a32

Please sign in to comment.