File tree Expand file tree Collapse file tree 7 files changed +78
-76
lines changed
Expand file tree Collapse file tree 7 files changed +78
-76
lines changed Original file line number Diff line number Diff line change @@ -293,15 +293,15 @@ jobs:
293293 name : 00_all_bsp_output_${{ github.sha }}
294294 path : output/
295295
296- # Post CI status to PR comment
297- post-ci-status :
298- needs : build
299- if : always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
300- uses : ./.github/workflows/post_ci_status.yml
301- with :
302- workflow_name : " RT-Thread BSP Static Build Check"
303- workflow_status : ${{ needs.build.result }}
304- pr_number : ${{ github.event.pull_request.number }}
305- permissions :
306- pull-requests : write
307- issues : write
296+ # # Post CI status to PR comment
297+ # post-ci-status:
298+ # needs: build
299+ # if: always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
300+ # uses: ./.github/workflows/post_ci_status.yml
301+ # with:
302+ # workflow_name: "RT-Thread BSP Static Build Check"
303+ # workflow_status: ${{ needs.build.result }}
304+ # pr_number: ${{ github.event.pull_request.number }}
305+ # permissions:
306+ # pull-requests: write
307+ # issues: write
Original file line number Diff line number Diff line change 99
1010name : CI Results Comment
1111
12- on :
13- workflow_run :
14- workflows :
15- - " RT-Thread BSP Static Build Check"
16- - " Static code analysis"
17- - " Check File Format and License"
18- - " utest_auto_run"
19- - " ToolsCI"
20- - " pkgs_test"
21- types :
22- - completed
12+ # on:
13+ # workflow_run:
14+ # workflows:
15+ # - "RT-Thread BSP Static Build Check"
16+ # - "Static code analysis"
17+ # - "Check File Format and License"
18+ # - "utest_auto_run"
19+ # - "ToolsCI"
20+ # - "pkgs_test"
21+ # types:
22+ # - completed
2323
2424permissions :
2525 pull-requests : write
Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ jobs:
3131 pip install click chardet PyYaml
3232 python tools/ci/file_check.py check 'https://github.com/RT-Thread/rt-thread' 'master'
3333
34- # Post CI status to PR comment
35- post-ci-status :
36- needs : scancode_job
37- if : always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
38- uses : ./.github/workflows/post_ci_status.yml
39- with :
40- workflow_name : " Check File Format and License"
41- workflow_status : ${{ needs.scancode_job.result }}
42- pr_number : ${{ github.event.pull_request.number }}
43- permissions :
44- pull-requests : write
45- issues : write
34+ # # Post CI status to PR comment
35+ # post-ci-status:
36+ # needs: scancode_job
37+ # if: always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
38+ # uses: ./.github/workflows/post_ci_status.yml
39+ # with:
40+ # workflow_name: "Check File Format and License"
41+ # workflow_status: ${{ needs.scancode_job.result }}
42+ # pr_number: ${{ github.event.pull_request.number }}
43+ # permissions:
44+ # pull-requests: write
45+ # issues: write
Original file line number Diff line number Diff line change 99
1010name : Post CI Status Comment
1111
12- on :
13- workflow_call :
14- inputs :
15- workflow_name :
16- description : ' Name of the workflow'
17- required : true
18- type : string
19- workflow_status :
20- description : ' Status of the workflow (success/failure)'
21- required : true
22- type : string
23- pr_number :
24- description : ' Pull request number'
25- required : true
26- type : number
12+ # on:
13+ # workflow_call:
14+ # inputs:
15+ # workflow_name:
16+ # description: 'Name of the workflow'
17+ # required: true
18+ # type: string
19+ # workflow_status:
20+ # description: 'Status of the workflow (success/failure)'
21+ # required: true
22+ # type: string
23+ # pr_number:
24+ # description: 'Pull request number'
25+ # required: true
26+ # type: number
2727
2828permissions :
2929 pull-requests : write
3636 steps :
3737 - name : Post or update CI status comment
3838 uses : actions/github-script@v7
39+ env :
40+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3941 with :
4042 script : |
4143 const prNumber = ${{ inputs.pr_number }};
Original file line number Diff line number Diff line change @@ -56,15 +56,15 @@ jobs:
5656 cd ..
5757 python tools/ci/cpp_check.py check
5858
59- # Post CI status to PR comment
60- post-ci-status :
61- needs : scancode_job
62- if : always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
63- uses : ./.github/workflows/post_ci_status.yml
64- with :
65- workflow_name : " Static code analysis"
66- workflow_status : ${{ needs.scancode_job.result }}
67- pr_number : ${{ github.event.pull_request.number }}
68- permissions :
69- pull-requests : write
70- issues : write
59+ # # Post CI status to PR comment
60+ # post-ci-status:
61+ # needs: scancode_job
62+ # if: always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
63+ # uses: ./.github/workflows/post_ci_status.yml
64+ # with:
65+ # workflow_name: "Static code analysis"
66+ # workflow_status: ${{ needs.scancode_job.result }}
67+ # pr_number: ${{ github.event.pull_request.number }}
68+ # permissions:
69+ # pull-requests: write
70+ # issues: write
Original file line number Diff line number Diff line change @@ -305,15 +305,15 @@ jobs:
305305 break
306306 fi
307307 done
308- # Post CI status to PR comment
309- post-ci-status :
310- needs : test
311- if : always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
312- uses : ./.github/workflows/post_ci_status.yml
313- with :
314- workflow_name : " utest_auto_run"
315- workflow_status : ${{ needs.test.result }}
316- pr_number : ${{ github.event.pull_request.number }}
317- permissions :
318- pull-requests : write
319- issues : write
308+ # # Post CI status to PR comment
309+ # post-ci-status:
310+ # needs: test
311+ # if: always() && github.event_name == 'pull_request' && github.repository_owner == 'RT-Thread'
312+ # uses: ./.github/workflows/post_ci_status.yml
313+ # with:
314+ # workflow_name: "utest_auto_run"
315+ # workflow_status: ${{ needs.test.result }}
316+ # pr_number: ${{ github.event.pull_request.number }}
317+ # permissions:
318+ # pull-requests: write
319+ # issues: write
Original file line number Diff line number Diff line change 1313 * /
1414
1515/ **
16- * @addtogroup cortex - m4
16+ * @addtogroup cortex - m33
1717 * /
1818/ * @{ * /
1919
2020#include <rtconfig.h>
2121
22- . cpu cortex - m4
22+ . cpu cortex - m33
2323.syntax unified
2424.thumb
2525.text
You can’t perform that action at this time.
0 commit comments