diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 183cb158c..34cb7911d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,11 +18,6 @@ on: type: string required: true default: main - specifyRepo: - description: 'Specify Repo Path' - type: string - required: true - default: Liberty-tools-intellij workflow_dispatch: inputs: useLocalPlugin: @@ -66,7 +61,6 @@ jobs: USE_LOCAL_PLUGIN: ${{ inputs.useLocalPlugin || false }} REF_LSP4IJ: ${{ inputs.refLsp4ij }} REF_LTI_TAG: ${{ inputs.refLTITag }} - SPECIFY_REPO: ${{ inputs.specifyRepo }} steps: - name: Configure pagefile if: contains(matrix.os, 'windows') @@ -78,7 +72,6 @@ jobs: - name: 'Checkout liberty-tools-intellij' uses: actions/checkout@v3 with: - repository: ${{ env.SPECIFY_REPO }} path: liberty-tools-intellij ref: ${{ env.REF_LTI_TAG }} - name: 'Install required integration test software' diff --git a/.github/workflows/cronJob.yaml b/.github/workflows/cronJob.yaml index bbbf6f9aa..0c8b92339 100644 --- a/.github/workflows/cronJob.yaml +++ b/.github/workflows/cronJob.yaml @@ -75,14 +75,12 @@ jobs: fail-fast: false matrix: # Existing LTI release tags and branches can be added to obtain build results.If the tag array is empty, it will default to 'main'. However, if there is at least one tag or branch in the tag array and you need to run on 'main' as well, make sure to add 'main' to the array. - tag: [ '' ] # Can specify tags or branches such as '24.0.6' and 'main' + tag: [ 'lsp4ij-market-0.0.2-integration' ] # Can specify tags or branches such as '24.0.6' and 'main' pr_details: ${{ fromJson(needs.fetch_all_pull_request_shas.outputs.pr_details) }} with: useLocalPlugin: true refLsp4ij: ${{ matrix.pr_details.sha }} refLTITag: ${{ matrix.tag }} - # Specify the original repository path to fetch the branch or tag from the remote repository. By default, a forked repository cannot retrieve the branches and tags of the remote repository. - specifyRepo: OpenLiberty/Liberty-tools-intellij name: Run PR # Run the LTI Tests against lsp4ij main branch @@ -92,10 +90,9 @@ jobs: fail-fast: false matrix: # Existing LTI release tags and branches can be added to obtain build results.If the tag array is empty, it will default to 'main'. However, if there is at least one tag or branch in the tag array and you need to run on 'main' as well, make sure to add 'main' to the array. - tag: [''] + tag: [ 'lsp4ij-market-0.0.2-integration' ] with: useLocalPlugin: true refLsp4ij: main refLTITag: ${{ matrix.tag }} - specifyRepo: OpenLiberty/Liberty-tools-intellij name: Run Lsp4ij Main \ No newline at end of file