diff --git a/.github/workflows/build-check_aarch64.yml b/.github/workflows/build-check_aarch64.yml index d9a82efd6351a0..2c51dc651c87a1 100644 --- a/.github/workflows/build-check_aarch64.yml +++ b/.github/workflows/build-check_aarch64.yml @@ -21,4 +21,4 @@ jobs: scripts/config --disable SYSTEM_TRUSTED_KEYS scripts/config --disable SYSTEM_REVOCATION_KEYS make olddefconfig - make -j $(nproc) bzImage + make -j $(nproc) Image diff --git a/.github/workflows/create-redfs-pr.yml b/.github/workflows/create-redfs-pr.yml index c1406c0e48d9fc..6229e73dc435f9 100644 --- a/.github/workflows/create-redfs-pr.yml +++ b/.github/workflows/create-redfs-pr.yml @@ -23,7 +23,6 @@ jobs: PR_NUMBER: ${{ github.event.pull_request.number }} PR_TITLE: ${{ github.event.pull_request.title }} BASE_SHA: ${{ github.event.pull_request.base.sha }} - HEAD_SHA: ${{ github.event.pull_request.head.sha }} REPO_NAME: ${{ github.repository }} BRANCH_NAME: ${{ github.ref_name }} run: | @@ -32,12 +31,12 @@ jobs: echo -e "Sync with $REPO_NAME branch $BRANCH_NAME PR $PR_NUMBER" >> ../commit.msg echo -e "$PR_TITLE\n" >> ../commit.msg echo -e "(commit: ${{ github.sha }})\n" >> ../commit.msg - echo "Getting git log $BASE_SHA..$HEAD_SHA" + echo "Getting git log $BASE_SHA..$GITHUB_SHA" RET=0 - git log --format="- %h %s" $BASE_SHA..$HEAD_SHA >> ../commit.msg || RET=$? + git log --format="- %h %s" $BASE_SHA..$GITHUB_SHA >> ../commit.msg || RET=$? if [ $RET -ne 0 ]; then echo "Failed to get git log with range, try to get log with single commit (too many commits?)." - git log --format="- %s" $HEAD_SHA >> ../commit.msg || RET=$? + git log --format="- %s" $GITHUB_SHA >> ../commit.msg || RET=$? if [ $RET -ne 0 ]; then echo "Failed to get git log, exit with error." exit 1