From bf445e7f59a21e8aac86c54393f6f2d11676c0aa Mon Sep 17 00:00:00 2001 From: Minoplhy Date: Sat, 31 Jul 2021 23:52:16 +0700 Subject: [PATCH] Create action.yaml --- action.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 action.yaml diff --git a/action.yaml b/action.yaml new file mode 100644 index 0000000..0901945 --- /dev/null +++ b/action.yaml @@ -0,0 +1,36 @@ +name: "Rani" +description: "filters filters" +branding: + icon: 'activity' + color: 'green' + +inputs: + Destination_NAME: + description: "destination's name of repo" + required: true + Destination_REPO: + description: "repo name" + required: true + Destination_VERSION: + description: "version" + required: true + GIT_NAME: + description: 'username' + required: true + GIT_EMAIL: + description: 'email' + required: true + REPO_BRANCH: + description: 'branch' + required: true + +runs: + using: "docker" + image: "Dockerfile" + args: + - ${{ inputs.Destination_NAME }} + - ${{ inputs.Destination_REPO }} + - ${{ inputs.Destination_VERSION }} + - ${{ inputs.GIT_NAME }} + - ${{ inputs.GIT_EMAIL }} + - ${{ inputs.REPO_BRANCH }}