Experimenting with github actions
This commit is contained in:
parent
8b89be38be
commit
a1246fed7a
1 changed files with 10 additions and 0 deletions
10
.github/workflows/pull_request_check.yml
vendored
10
.github/workflows/pull_request_check.yml
vendored
|
@ -42,6 +42,16 @@ jobs:
|
||||||
- name: Test variable
|
- name: Test variable
|
||||||
run: echo "${{ env.VALIDATION_FAILED }}"
|
run: echo "${{ env.VALIDATION_FAILED }}"
|
||||||
|
|
||||||
|
- name: Archive reports
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
if: >-
|
||||||
|
env.VALIDATION_FAILED == 'true'
|
||||||
|
with:
|
||||||
|
name: reports
|
||||||
|
path: |
|
||||||
|
layer_report.txt
|
||||||
|
missing_licenses.txt
|
||||||
|
|
||||||
- name: Comment PR
|
- name: Comment PR
|
||||||
uses: allthatjazzleo/actions-pull-request-add-comment@master
|
uses: allthatjazzleo/actions-pull-request-add-comment@master
|
||||||
if: >-
|
if: >-
|
||||||
|
|
Loading…
Reference in a new issue