-
Notifications
You must be signed in to change notification settings - Fork 20
54 lines (48 loc) · 2.02 KB
/
analyze_crashlogs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Analyze crash logs
on:
issue_comment:
types: [created]
issues:
types: [opened, edited]
jobs:
analyze_crashlog:
name: Analyze crash log
runs-on: ubuntu-20.04
if: |
(github.event_name == 'issue_comment' && (
contains(github.event.comment.body, 'CRASH!') ||
contains(github.event.comment.body, 'WATCHDOG TIMEOUT'))) ||
(github.event_name == 'issues' && (
contains(github.event.issue.body, 'CRASH!') ||
contains(github.event.issue.body, 'WATCHDOG TIMEOUT')))
permissions:
issues: write
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
- name: Install tools
run: |
sudo apt-get install binutils-arm-none-eabi
- name: Analyze crash log from issue body
if: github.event_name == 'issues'
env:
ISSUE_ID: ${{ github.event.issue.number }}
GH_TOKEN: ${{ github.token }}
run: |
gh api repos/${GITHUB_REPOSITORY}/issues/${ISSUE_ID}/comments --jq '.[-1].body' | grep Automatic && exit 0 # Comment only once
gh api repos/${GITHUB_REPOSITORY}/issues/${ISSUE_ID} --jq '.body' > comment.txt
echo -e 'Automatic analysis of the crash log:\n\n<pre>' > output.txt
utils/analyze_crashlog.sh comment.txt | tee -a output.txt
echo '</pre>' >> output.txt
grep '^0x' output.txt && gh issue comment ${ISSUE_ID} --body-file output.txt
- name: Analyze crash log from issue comment
if: github.event_name == 'issue_comment'
env:
ISSUE_ID: ${{ github.event.issue.number }}
GH_TOKEN: ${{ github.token }}
run: |
gh api repos/${GITHUB_REPOSITORY}/issues/${ISSUE_ID}/comments --jq '.[-1].body' > comment.txt
echo -e 'Automatic analysis of the crash log:\n\n<pre>' > output.txt
utils/analyze_crashlog.sh comment.txt | tee -a output.txt
echo '</pre>' >> output.txt
grep '^0x' output.txt && gh issue comment ${ISSUE_ID} --body-file output.txt