blob: e365cfe66906060e73672ac853184742e5cc52eb [file] [log] [blame]
Tomasz Gorochowikca823142021-10-19 13:54:46 +02001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4name: pr-trigger
5
6on:
7 pull_request:
8
9jobs:
10 upload:
11 runs-on: ubuntu-latest
12 steps:
13 - uses: actions/checkout@v2
14 - name: concatenate verible configs
15 run: |
Philipp Wagnerd8ba0722021-10-25 17:58:44 +010016 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 Gorochowikeb6502c2021-10-25 11:53:49 +020019 run: |
20 cat verible_config
Tomasz Gorochowik778be032021-10-25 12:52:42 +020021 - name: Show waiver
22 run: |
23 cat verible_waiver
Tomasz Gorochowikca823142021-10-19 13:54:46 +020024 - 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 Gorochowik778be032021-10-25 12:52:42 +020037 verible_waiver
Tomasz Gorochowikca823142021-10-19 13:54:46 +020038 event.json