Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
humonnom authored Nov 5, 2024
1 parent 9297f7e commit 9736c33
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,25 @@ branding:
icon: git-merge
color: yellow

inputs:
upstream_repository_owner:
description: 'Owner of the upstream repository'
required: true
upstream_repository_name:
description: 'Name of the upstream repository'
required: true
forked_repository_owner:
description: 'Owner of the forked repository'
required: true
forked_repository_name:
description: 'Name of the forked repository'
required: true

runs:
using: "composite"
steps:
- name: "Echo"
shell: bash # shell 속성 추가
run: echo "It works!"
- name: "Print Repository Information"
shell: bash
run: |
echo "Upstream Repository: ${{ inputs.upstream_repository_owner }}/${{ inputs.upstream_repository_name }}"
echo "Forked Repository: ${{ inputs.forked_repository_owner }}/${{ inputs.forked_repository_name }}"

0 comments on commit 9736c33

Please sign in to comment.