File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ---
Original file line number Diff line number Diff line change @@ -156,13 +156,10 @@ jobs:
156156 # PR code in a host applicaiton without doing a release.
157157 publish_snapshot :
158158 name : Publish npm snapshot
159- # [FEI-7341] DISABLED: Snapshots temporarily disabled due to security concerns (shai-halud worm)
160- # To re-enable, replace the condition below with the original multi-line condition
161- if : false
162- # Original condition (commented out):
163- # if: |
164- # (github.event_name == 'workflow_dispatch' && inputs.run_type == 'snapshot') ||
165- # (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'changeset-release/'))
159+ # We don't publish snapshots on Changeset "Version Packages" PRs
160+ if : |
161+ (github.event_name == 'workflow_dispatch' && inputs.run_type == 'snapshot') ||
162+ (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'changeset-release/'))
166163 runs-on : ${{ matrix.os }}
167164 permissions :
168165 id-token : write # required for publishing to npm with provenance
You can’t perform that action at this time.
0 commit comments