Tomasz Gorochowik | ca82314 | 2021-10-19 13:54:46 +0200 | [diff] [blame] | 1 | # Copyright lowRISC contributors. |
| 2 | # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | name: pr-trigger |
| 5 | |
| 6 | on: |
| 7 | pull_request: |
| 8 | |
| 9 | jobs: |
| 10 | upload: |
| 11 | runs-on: ubuntu-latest |
| 12 | steps: |
| 13 | - uses: actions/checkout@v2 |
| 14 | - name: concatenate verible configs |
| 15 | run: | |
Philipp Wagner | d8ba072 | 2021-10-25 17:58:44 +0100 | [diff] [blame] | 16 | find . -type f -name '*.rules.verible_lint' -exec cat {} \; > verible_config |
| 17 | find . -type f -name '*.vbl' -exec cat {} \; > verible_waiver |
| 18 | - name: Show config (rules) |
Tomasz Gorochowik | eb6502c | 2021-10-25 11:53:49 +0200 | [diff] [blame] | 19 | run: | |
| 20 | cat verible_config |
Tomasz Gorochowik | 778be03 | 2021-10-25 12:52:42 +0200 | [diff] [blame] | 21 | - name: Show waiver |
| 22 | run: | |
| 23 | cat verible_waiver |
Tomasz Gorochowik | ca82314 | 2021-10-19 13:54:46 +0200 | [diff] [blame] | 24 | - name: Copy event file |
| 25 | run: cp "$GITHUB_EVENT_PATH" ./event.json |
| 26 | |
| 27 | # If this workflow is triggered by a PR from a fork |
| 28 | # it won't have sufficient access rights to make a review |
| 29 | # so we just save the file needed to do the review |
| 30 | # in a context with proper access rights |
| 31 | - name: Upload event file and config as artifacts |
| 32 | uses: actions/upload-artifact@v2 |
| 33 | with: |
| 34 | name: verible_input |
| 35 | path: | |
| 36 | verible_config |
Tomasz Gorochowik | 778be03 | 2021-10-25 12:52:42 +0200 | [diff] [blame] | 37 | verible_waiver |
Tomasz Gorochowik | ca82314 | 2021-10-19 13:54:46 +0200 | [diff] [blame] | 38 | event.json |