mirror of
https://code.forgejo.org/actions/go-versions.git
synced 2024-11-09 03:03:38 -05:00
add logging for message
contents
This commit is contained in:
parent
c18c2ac1ac
commit
2e49d3e53d
1 changed files with 11 additions and 16 deletions
27
.github/workflows/get-go-versions.yml
vendored
27
.github/workflows/get-go-versions.yml
vendored
|
@ -47,14 +47,12 @@ jobs:
|
||||||
$gitHubApi.CancelWorkflow("$env:GITHUB_RUN_ID")
|
$gitHubApi.CancelWorkflow("$env:GITHUB_RUN_ID")
|
||||||
Start-Sleep -Seconds 60
|
Start-Sleep -Seconds 60
|
||||||
|
|
||||||
# - name: Send Slack notification
|
- name: Send Slack notification
|
||||||
# run: |
|
run: |
|
||||||
# $pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
|
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
|
||||||
# $message = "The following versions of '${{ env.TOOL_NAME }}' are available to upload: ${{ env.TOOL_VERSIONS }}\nLink to the pipeline: $pipelineUrl"
|
$message = "The following versions of '${{ env.TOOL_NAME }}' are available to upload: ${{ env.TOOL_VERSIONS }}\nLink to the pipeline: $pipelineUrl"
|
||||||
# ./helpers/get-new-tool-versions/send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
|
echo "$message"
|
||||||
# -ToolName "${{ env.TOOL_NAME }}" `
|
|
||||||
# -ImageUrl "https://golang.org/lib/godoc/images/footer-gopher.jpg" `
|
|
||||||
# -Text "$message"
|
|
||||||
trigger_builds:
|
trigger_builds:
|
||||||
name: Trigger builds
|
name: Trigger builds
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -86,11 +84,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
# - name: Send Slack notification if build fails
|
- name: Send Slack notification if build fails
|
||||||
# run: |
|
run: |
|
||||||
# $pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
|
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
|
||||||
# $message = "The build of the '${{ env.TOOL_NAME }}' detection pipeline failed :progress-error:\nLink to the pipeline: $pipelineUrl"
|
$message = "The build of the '${{ env.TOOL_NAME }}' detection pipeline failed :progress-error:\nLink to the pipeline: $pipelineUrl"
|
||||||
# ./helpers/get-new-tool-versions/send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
|
echo "$message"
|
||||||
# -ToolName "${{ env.TOOL_NAME }}" `
|
|
||||||
# -Text "$message" `
|
|
||||||
# -ImageUrl "https://golang.org/lib/godoc/images/footer-gopher.jpg"
|
|
||||||
|
|
Loading…
Reference in a new issue