-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74edcc5
commit 4d8099f
Showing
1 changed file
with
4 additions
and
4 deletions.
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ Port is the Developer Platform meant to supercharge your DevOps and Developers, | |
|
||
## Send Scorecard Report | ||
|
||
Action to send a scorecard report to a Slack channel about the current metrics of a scorecard. | ||
Action to send a scorecard report to a Slack channel about the current state and progress in a scorecard. | ||
|
||
### example | ||
|
||
|
@@ -29,7 +29,7 @@ Action to send a scorecard report to a Slack channel about the current metrics o | |
| `filter_rule` | The [rule filter](https://docs.getport.io/search-and-query/#rules) to apply on the data queried from Port | false | | | ||
|
||
```yaml | ||
- uses: port-labs/[email protected].19 | ||
- uses: port-labs/[email protected].11 | ||
with: | ||
port_client_id: ${{ secrets.PORT_CLIENT_ID }} | ||
port_client_secret: ${{ secrets.PORT_CLIENT_SECRET }} | ||
|
@@ -63,13 +63,13 @@ A call to action to remind the team that some of their services didn't reach Gol | |
In this example you can see how we filter for specific team and send a reminder to them. | ||
|
||
```yaml | ||
- uses: port-labs/[email protected].19 | ||
- uses: port-labs/[email protected].11 | ||
with: | ||
port_client_id: ${{ secrets.PORT_CLIENT_ID }} | ||
port_client_secret: ${{ secrets.PORT_CLIENT_SECRET }} | ||
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
blueprint: service | ||
scorecard: Ownership | ||
message_kind: scorecard_reminder | ||
filter_rule: '{"property": "$team","operator": "containsAny","value": ["Backend"]}' | ||
filter_rule: '{"property": "$team","operator": "containsAny","value": ["Backend Team"]}' | ||
``` |