Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-check_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 3 additions & 4 deletions .github/workflows/create-redfs-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down
Loading