-
Notifications
You must be signed in to change notification settings - Fork 180
58 lines (48 loc) · 1.45 KB
/
check-packs.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
55
56
57
on:
workflow_dispatch:
pull_request:
branches:
- develop
permissions:
contents: read
pull-requests: write
jobs:
check_packs:
name: check packs
runs-on: ubuntu-latest
steps:
- name: Checkout panther-analysis
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
- name: Set python version
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 #v5.4.0
with:
python-version: "3.11"
- name: Install panther_analysis_tool
run: pip install panther_analysis_tool
- name: Check packs
id: check-packs
run: |
# Get the output for the PR comment body
panther_analysis_tool check-packs 2> errors.txt || true
echo ::set-output name=errors::`cat errors.txt`
- name: Check packs (Exit Code)
run: |
exit $(panther_analysis_tool check-packs)
- name: Comment PR
uses: thollander/actions-comment-pull-request@v3
if: failure()
with:
mode: upsert
message: |
:scream:
looks like some things could be wrong with the packs
```diff
${{ steps.check-packs.outputs.errors }}
```
comment-tag: check-packs
- name: Delete comment
uses: thollander/actions-comment-pull-request@v3
if: success()
with:
mode: delete
comment-tag: check-packs