-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add context to golang ci lint notifications (#15979)
* fix: add context to golang ci lint notifications * feat: add artifact url to slack message
- Loading branch information
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,11 @@ inputs: | |
description: Set where the go module file is located at | ||
default: "go.sum" | ||
|
||
outputs: | ||
golang-report-artifact-url: | ||
description: The URL to the uploaded artifact | ||
value: ${{ steps.upload-artifact.outputs.artifact_url }} | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
|
@@ -100,6 +105,7 @@ runs: | |
- name: Store Golangci-lint report artifact | ||
if: always() | ||
id: upload-artifact | ||
uses: actions/[email protected] | ||
with: | ||
# Use a unique suffix for each lint report artifact to avoid duplication errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters