|
| 1 | +name: Report a problem |
| 2 | +description: Create a report to let us help you |
| 3 | +body: |
| 4 | + - type: textarea |
| 5 | + attributes: |
| 6 | + label: What events trigger your workflow? |
| 7 | + id: ci-triggers |
| 8 | + description: >- |
| 9 | + Please copy and paste the workflow triggers. |
| 10 | + If you are using a resuable workflow (`workflow_dispatch` event), |
| 11 | + then please also include the workflow triggers that the calling workflow uses. |
| 12 | + placeholder: |- |
| 13 | + on: |
| 14 | + pull_request: |
| 15 | + branches: [main, master, develop] |
| 16 | + paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake'] |
| 17 | + push: |
| 18 | + branches: [main, master, develop] |
| 19 | + paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake'] |
| 20 | + render: yml |
| 21 | + validations: |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: textarea |
| 25 | + id: runner-os |
| 26 | + attributes: |
| 27 | + label: What OS does your workflow use? |
| 28 | + description: >- |
| 29 | + Please tell us what OS the workflow [`runs-on`](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on). |
| 30 | + If you are using an additional [`container`](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontainer), |
| 31 | + then please also include that information here. |
| 32 | + placeholder: |- |
| 33 | + runs-on: ubuntu-latest |
| 34 | + container: node:18 |
| 35 | + render: yml |
| 36 | + validations: |
| 37 | + required: true |
| 38 | + |
| 39 | + - type: textarea |
| 40 | + id: cpp-linter-config |
| 41 | + attributes: |
| 42 | + label: How is cpp-linter-action configured? |
| 43 | + description: >- |
| 44 | + Please copy and paste the version and inputs used to run cpp-linter-action. |
| 45 | + placeholder: |- |
| 46 | + - uses: cpp-linter/cpp-linter-action@v2 |
| 47 | + id: linter |
| 48 | + env: |
| 49 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 50 | + with: |
| 51 | + style: 'file' |
| 52 | + tidy-checks: '' |
| 53 | + render: yml |
| 54 | + validations: |
| 55 | + required: true |
| 56 | + |
| 57 | + - type: textarea |
| 58 | + id: what-happened |
| 59 | + attributes: |
| 60 | + label: What was the unexpected behavior? |
| 61 | + description: >- |
| 62 | + Use this area to describe what behavior you expected and what behavior you observed. |
| 63 | + Please be clear and concise as possible. Use screenshots if that would help. Most users |
| 64 | + use this to paste the workflow logs. |
| 65 | + placeholder: You can use markdown syntax here |
| 66 | + validations: |
| 67 | + required: true |
0 commit comments