Skip to content

Commit

Permalink
don't merge changes from main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
okdas committed Oct 8, 2024
1 parent 050e08d commit 2320268
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ jobs:
build-push-container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: "0" # Per https://github.com/ignite/cli/issues/1674#issuecomment-1144619147
# Pull the gitsha of the PR, and don't merge changes from main automatically.
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
# Per https://github.com/ignite/cli/issues/1674#issuecomment-1144619147
fetch-depth: "0"

- name: install ignite
run: make ignite_install
Expand Down

0 comments on commit 2320268

Please sign in to comment.