File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,14 @@ jobs:
236236 - HasChanged_src: ${{needs.Setup.outputs.HasChanged_src}}
237237 - HasChanged_docs: ${{needs.Setup.outputs.HasChanged_docs}}
238238 - HasChanged_automation: ${{needs.Setup.outputs.HasChanged_automation}}
239+ ### Github Bits
240+ - repository: ${{ github.event_name == 'push' && github.repository || github.event.pull_request.head.repo.full_name }}
241+ - ref: ${{ github.event_name == 'push' && github.ref || github.event.pull_request.head.ref }}
242+ - github.repository: ${{github.repository}}
243+ - github.event.pull_request.head.repo.full_name: ${{github.event.pull_request.head.repo.full_name}}
244+ - github.ref: ${{github.ref}}
245+ - github.event.pull_request.head.ref: ${{github.event.pull_request.head.ref}}
246+
239247 " @
240248 echo $markdown >> $Env:GITHUB_STEP_SUMMARY
241249 - name: " Show Release Description"
@@ -256,7 +264,7 @@ jobs:
256264 name : " Build, Test, Sonar Cloud Analysis, & Package"
257265 runs-on : windows-latest
258266 needs : Setup
259- if : ${{ success() }}
267+ if : false # ${{ success() }}
260268 env :
261269 solution : ' **/*.sln'
262270 buildPlatform : ' Any CPU'
@@ -352,7 +360,7 @@ jobs:
352360 BuildDocs :
353361 name : " Build Documentation output"
354362 runs-on : ubuntu-latest
355- if : ${{ success() }}
363+ if : false # ${{ success() }}
356364 needs : [Setup]
357365 env :
358366 GitVersion_SemVer : ${{ needs.Setup.outputs.GitVersion_SemVer }}
You can’t perform that action at this time.
0 commit comments