From 2c0fdbfe376b08850b130cb8e0db9a32fef99d01 Mon Sep 17 00:00:00 2001
From: Marcio <marciof.paludo@gmail.com>
Date: Tue, 2 Jul 2024 19:54:02 -0300
Subject: [PATCH] Upgrade on-pull-request-close workflow (#16)

---
 .../{on-pull-requet-close.yml => on-pull-request-close.yml} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename .github/workflows/{on-pull-requet-close.yml => on-pull-request-close.yml} (91%)

diff --git a/.github/workflows/on-pull-requet-close.yml b/.github/workflows/on-pull-request-close.yml
similarity index 91%
rename from .github/workflows/on-pull-requet-close.yml
rename to .github/workflows/on-pull-request-close.yml
index ed4e261..6929055 100644
--- a/.github/workflows/on-pull-requet-close.yml
+++ b/.github/workflows/on-pull-request-close.yml
@@ -17,7 +17,7 @@ jobs:
     secrets: inherit
     uses: ./.github/workflows/bump-version.yml
     with:
-      version: major
+      bump_version: major
   bump_minor:
     if: >
       github.event.pull_request.merged == true &&
@@ -25,7 +25,7 @@ jobs:
     secrets: inherit
     uses: ./.github/workflows/bump-version.yml
     with:
-      version: minor
+      bump_version: minor
   bump_patch:
     if: >
       github.event.pull_request.merged == true &&
@@ -33,4 +33,4 @@ jobs:
     secrets: inherit
     uses: ./.github/workflows/bump-version.yml
     with:
-      version: patch
\ No newline at end of file
+      bump_version: patch
\ No newline at end of file