Skip to content

Commit

Permalink
Fixing CI Workflow Usage
Browse files Browse the repository at this point in the history
  • Loading branch information
niyajali committed Aug 23, 2024
1 parent e285e7c commit 1ac497f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/master_dev_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Checkout the fork/head-repository and push changes to the fork.
# If you skip this, the base repository will be checked out and changes
# will be committed to the base repository!
repository: ${{ github.event.pull_request.head.repo.full_name }}

# Checkout the branch made in the fork. Will automatically push changes
# back to this branch.
ref: ${{ github.head_ref }}

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
Expand Down

0 comments on commit 1ac497f

Please sign in to comment.