Experimenting with github actions
This commit is contained in:
parent
5fd71b8d2b
commit
b308c64ebc
1 changed files with 10 additions and 1 deletions
9
.github/workflows/pull_request_check.yml
vendored
9
.github/workflows/pull_request_check.yml
vendored
|
@ -44,3 +44,12 @@ jobs:
|
||||||
|
|
||||||
- name: Test variable
|
- name: Test variable
|
||||||
run: echo "${{ env.VALIDATION_FAILED }}"
|
run: echo "${{ env.VALIDATION_FAILED }}"
|
||||||
|
|
||||||
|
- name: Comment PR
|
||||||
|
uses: allthatjazzleo/actions-pull-request-add-comment@master
|
||||||
|
if: >-
|
||||||
|
env.VALIDATION_FAILED == 'true'
|
||||||
|
with:
|
||||||
|
# message: 'yoyo🤙🏻'
|
||||||
|
message: "cat layer_report.txt missing_licenses.txt"
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue