Skip to content

Commit

Permalink
Create test-composit-action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gurevichdmitry authored Nov 3, 2024
1 parent 684b8b2 commit 47616fb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-composit-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Composite Action Test

on:
workflow_dispatch:
inputs:
deployment-name:
description: 'Deployment name'
required: true
type: string

jobs:
Deploy:
name: Run Composite
runs-on: ubuntu-22.04
timeout-minutes: 60
steps:
- name: Check out the repo
uses: actions/checkout@v4

- name: Composite action
uses: ./.github/actions/composite
with:
deployment-name: ${{ inputs.deployment-name }}

0 comments on commit 47616fb

Please sign in to comment.