Skip to content

Commit

Permalink
Specified Correct branch and removed Parameter 'specifyRepo'
Browse files Browse the repository at this point in the history
  • Loading branch information
vaisakhkannan committed Jul 15, 2024
1 parent 7e3c6ab commit 21da04e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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')
Expand All @@ -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'
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/cronJob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 21da04e

Please sign in to comment.