[Do not merge] Data Widgets v2.28.3: Update changelog #3011
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: Run Sigrid CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
sigridci: | |
if: vars.ENABLE_SIGRID == 'yes' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Download Sigrid CI | |
run: "git clone https://github.com/Software-Improvement-Group/sigridci.git sigridci" | |
- name: Only publish to Sigrid without waiting for results | |
if: github.event_name == 'push' | |
env: | |
SIGRID_CI_TOKEN: ${{ secrets.SIGRID_CI_TOKEN }} | |
run: "./sigridci/sigridci/sigridci.py --customer mendix --system mendix-web-widgets --source ./packages --publishonly" | |
- name: Run Sigrid CI without publishing | |
if: github.event_name == 'pull_request' | |
continue-on-error: true | |
env: | |
SIGRID_CI_TOKEN: ${{ secrets.SIGRID_CI_TOKEN }} | |
run: "./sigridci/sigridci/sigridci.py --customer mendix --system mendix-web-widgets --source ./packages" | |
- name: Save Sigrid CI results | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1 | |
with: | |
path: "sigrid-ci-output/**" | |
retention-days: 7 | |
if-no-files-found: ignore | |
- name: "Sigrid pull request feedback" | |
# Disable comments for now | |
if: ${{ false }} | |
uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
with: | |
message-id: sigrid | |
message-path: sigrid-ci-output/feedback.md |