diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb69bf88f2..7c264064f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,7 @@ concurrency: env: # This must be set for fetchdep.sh to get the right branch PR_NUMBER: ${{ github.event.pull_request.number }} + NX_DEFAULT_OUTPUT_STYLE: static permissions: {} # No permissions required jobs: build: diff --git a/.github/workflows/build_develop.yml b/.github/workflows/build_develop.yml index cb943f05cf..f70f860005 100644 --- a/.github/workflows/build_develop.yml +++ b/.github/workflows/build_develop.yml @@ -9,6 +9,8 @@ on: concurrency: group: ${{ github.repository_owner }}-${{ github.workflow }}-${{ github.ref_name }} cancel-in-progress: true +env: + NX_DEFAULT_OUTPUT_STYLE: static permissions: {} jobs: build: diff --git a/.github/workflows/end-to-end-tests.yaml b/.github/workflows/end-to-end-tests.yaml index c725016199..532f99e0fc 100644 --- a/.github/workflows/end-to-end-tests.yaml +++ b/.github/workflows/end-to-end-tests.yaml @@ -37,6 +37,7 @@ env: PR_NUMBER: ${{ github.event.pull_request.number }} # Use 6 runners in the default case, but 4 when running on a schedule where we run all 5 projects (20 runners total) NUM_RUNNERS: ${{ github.event_name == 'schedule' && 4 || 6 }} + NX_DEFAULT_OUTPUT_STYLE: static permissions: {} # No permissions required diff --git a/.github/workflows/static_analysis.yaml b/.github/workflows/static_analysis.yaml index 8dd51ce6b5..937b9f44ff 100644 --- a/.github/workflows/static_analysis.yaml +++ b/.github/workflows/static_analysis.yaml @@ -14,6 +14,7 @@ concurrency: env: # This must be set for fetchdep.sh to get the right branch PR_NUMBER: ${{ github.event.pull_request.number }} + NX_DEFAULT_OUTPUT_STYLE: static permissions: {} # No permissions required diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index affd91b35b..2be50c8f89 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,6 +25,7 @@ env: ENABLE_COVERAGE: ${{ github.event_name != 'merge_group' && inputs.disable_coverage != 'true' }} # fetchdep.sh needs to know our PR number PR_NUMBER: ${{ github.event.pull_request.number }} + NX_DEFAULT_OUTPUT_STYLE: static permissions: {}