Sigrid improvements #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sigrid-pullrequest | |
on: [pull_request] | |
jobs: | |
sigridci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Download Sigrid CI | |
run: "git clone https://github.com/Software-Improvement-Group/sigridci.git sigridci" | |
- name: "Run Sigrid CI" | |
env: | |
SIGRID_CI_TOKEN: "${{ secrets.SIGRID_CI_TOKEN }}" | |
run: "./sigridci/sigridci/sigridci.py --customer mendix --system deeplink --source ." | |
- name: "Save Sigrid CI results" | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
path: "sigrid-ci-output/**" | |
retention-days: 7 | |
if-no-files-found: ignore | |
- name: "Sigrid pull request feedback" | |
uses: mshick/add-pr-comment@v2 | |
if: always() | |
with: | |
message-id: sigrid | |
message-path: sigrid-ci-output/feedback.md |