mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
* ci: change sonar-develop workflow to run on daily cron instead of every push to develop Co-authored-by: eromano <1030050+eromano@users.noreply.github.com> * ci: add pull-requests: read permission to sonar-develop workflow Co-authored-by: eromano <1030050+eromano@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: eromano <1030050+eromano@users.noreply.github.com>
23 lines
436 B
YAML
23 lines
436 B
YAML
name: "SonarCloud Full Scan (develop)"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 5 * * *'
|
|
workflow_dispatch: {}
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
full-unit-tests-and-sonar-scan:
|
|
name: "Full Unit Tests + SonarCloud Scan"
|
|
uses: ./.github/workflows/unit-test-workflow.yml
|
|
secrets: inherit
|
|
with:
|
|
full: true
|