From b873bc52cbc7f21e3af2ad15fe5d7c8f2b82eed6 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Thu, 20 Nov 2025 17:48:45 +0530 Subject: [PATCH 1/5] AXIOM Test run PR Signed-off-by: ffrancis123 --- ci/files_to_copy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/files_to_copy.sh b/ci/files_to_copy.sh index c66f741d..94b045ba 100644 --- a/ci/files_to_copy.sh +++ b/ci/files_to_copy.sh @@ -7,5 +7,5 @@ cd .. # copy the build artifacts to a temporary directory -cp -R build/usr/* /tmp/rootfs/usr/ -cp -R build/etc/* /tmp/rootfs/etc/ +sudo cp -R build/usr/* /tmp/rootfs/usr/ +sudo cp -R build/etc/* /tmp/rootfs/etc/ From ceac363cfd1d396891008b1e74095fa7f728fc95 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Thu, 20 Nov 2025 18:05:47 +0530 Subject: [PATCH 2/5] Update files_to_copy.sh Signed-off-by: ffrancis123 --- ci/files_to_copy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/files_to_copy.sh b/ci/files_to_copy.sh index 94b045ba..902990dd 100644 --- a/ci/files_to_copy.sh +++ b/ci/files_to_copy.sh @@ -6,6 +6,8 @@ # Move outside the github workspace to avoid conflicts cd .. +sudo touch graphmger.txt +sudo cp -R touch graphmger.txt /tmp/rootfs/etc/ # copy the build artifacts to a temporary directory sudo cp -R build/usr/* /tmp/rootfs/usr/ sudo cp -R build/etc/* /tmp/rootfs/etc/ From 52ffb3301063f6045ea932f44bb9a8713e2e4bf9 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Thu, 20 Nov 2025 18:24:07 +0530 Subject: [PATCH 3/5] Update files_to_copy.sh Signed-off-by: ffrancis123 --- ci/files_to_copy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/files_to_copy.sh b/ci/files_to_copy.sh index 902990dd..9bb4d592 100644 --- a/ci/files_to_copy.sh +++ b/ci/files_to_copy.sh @@ -7,7 +7,7 @@ cd .. sudo touch graphmger.txt -sudo cp -R touch graphmger.txt /tmp/rootfs/etc/ +sudo cp -R graphmger.txt /tmp/rootfs/etc/ # copy the build artifacts to a temporary directory sudo cp -R build/usr/* /tmp/rootfs/usr/ sudo cp -R build/etc/* /tmp/rootfs/etc/ From 7c4f9e85e008de05842ff223ec45ab11393edd2e Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Fri, 21 Nov 2025 12:01:26 +0530 Subject: [PATCH 4/5] Update files_to_copy.sh Signed-off-by: ffrancis123 From f19870d367cdf578585eb4a1abdd078caa607909 Mon Sep 17 00:00:00 2001 From: ffrancis123 Date: Fri, 21 Nov 2025 12:19:03 +0530 Subject: [PATCH 5/5] Create commit-checker.yml checker is added to fetch all details in the branch Signed-off-by: ffrancis123 --- .github/workflows/commit-checker.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/commit-checker.yml diff --git a/.github/workflows/commit-checker.yml b/.github/workflows/commit-checker.yml new file mode 100644 index 00000000..37e1f66c --- /dev/null +++ b/.github/workflows/commit-checker.yml @@ -0,0 +1,22 @@ +name: Commit Msg Check Action + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + check-commits: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run custom commit check + uses: qualcomm/commit-msg-check-action@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + body-char-limit: 72 + sub-char-limit: 50 + check-blank-line: true