Change how we run Sigrid CI on itself. #1465
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: | |
name: "Sigrid CI" | |
if: github.repository_owner == 'Software-Improvement-Group' | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out repository" | |
uses: actions/checkout@v4 | |
- name: "Run Sigrid CI" | |
env: | |
SIGRID_CI_TOKEN: "${{ secrets.SIGRID_CI_TOKEN }}" | |
run: "./sigridci/sigridci.py --customer sig --system sigridci-client --source ." | |
- name: "Save Sigrid CI results" | |
if: always() | |
uses: actions/upload-artifact@v4 | |
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 | |
sigridci_docker: | |
name: "Sigrid CI in Docker" | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'Software-Improvement-Group' | |
steps: | |
- name: "Check out repository" | |
uses: actions/checkout@v4 | |
- name: "Run Sigrid CI in Docker" | |
uses: ./ | |
id: dockertest | |
with: | |
customer: "sig" | |
system: "sigridci-client" | |
env: | |
SIGRID_CI_TOKEN: "${{ secrets.SIGRID_CI_TOKEN }}" |