We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a11d8d1 commit 25c5b84Copy full SHA for 25c5b84
.github/workflows/process_bundles.yml
@@ -0,0 +1,18 @@
1
+name: "Process systeminfo bundles"
2
+on:
3
+ issues:
4
+ types: [opened, edited]
5
+ issue_comment:
6
+ types: [created, edited]
7
+
8
+jobs:
9
+ process-bundles:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: OctoPrint/actions/process-systeminfo-bundles@main
13
+ with:
14
+ github-token: ${{ secrets.GITHUB_TOKEN }}
15
+ repo: ${{ github.repository }}
16
+ comment: ${{ github.event.comment.id }}
17
+ issue: ${{ github.event.issue.number }}
18
+ body: ${{ github.event_name == 'issue_comment' && github.event.comment.body || github.event.issue.body }}
0 commit comments