We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 104ca1e commit c5cd449Copy full SHA for c5cd449
.github/workflows/build.yml
@@ -55,3 +55,5 @@ jobs:
55
- name: Build docs
56
working-directory: docs
57
run: sphinx-build -E -W -b html . _build/html
58
+ - name: Setup problem matchers
59
+ uses: adafruit/circuitpython-action-library-ci-problem-matchers@v1
.github/workflows/failure-help-text.yml
@@ -0,0 +1,19 @@
1
+# SPDX-FileCopyrightText: 2021 Scott Shawcroft for Adafruit Industries
2
+#
3
+# SPDX-License-Identifier: MIT
4
+
5
+name: Failure help text
6
7
+on:
8
+ workflow_run:
9
+ workflows: ["Build CI"]
10
+ types:
11
+ - completed
12
13
+jobs:
14
+ post-help:
15
+ runs-on: ubuntu-latest
16
+ if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.event == 'pull_request' }}
17
+ steps:
18
+ - name: Post comment to help
19
+ uses: adafruit/circuitpython-action-library-ci-failed@v1
0 commit comments