diff --git a/.github/workflows/release-close-issue.yml b/.github/workflows/release-close-issue.yml index bfa06021e6..b8e3c438a7 100644 --- a/.github/workflows/release-close-issue.yml +++ b/.github/workflows/release-close-issue.yml @@ -7,6 +7,9 @@ on: issue_label: description: "All issues with such label will be closed" required: true + version: + description: "Which version is this issue fixed in" + required: true # Triggered by release-nocodb.yml workflow_call: inputs: @@ -14,13 +17,18 @@ on: description: "All issues with such label will be closed" required: true type: string + version: + description: "Which version is this issue fixed in" + required: true + type: string jobs: close-issues: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: close-resolved-issues - uses: bdougie/close-issues-based-on-label@master + uses: wingkwong/close-issues-based-on-label@master env: LABEL: ${{ github.event.inputs.issue_label || inputs.issue_label }} + VERSION: ${{ github.event.inputs.version || inputs.version }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file