mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
.github/workflows/govulncheck: migrate to a Github App (#10793)
Send failures to a new channel using a github app token instead of webhook URL. Updates #cleanup Signed-off-by: Andrew Lytvynov <awly@tailscale.com>
This commit is contained in:
parent
20f3f706a4
commit
7df9af2f5c
39
.github/workflows/govulncheck.yml
vendored
39
.github/workflows/govulncheck.yml
vendored
@ -22,17 +22,30 @@ jobs:
|
|||||||
- name: Scan source code for known vulnerabilities
|
- name: Scan source code for known vulnerabilities
|
||||||
run: PATH=$PWD/tool/:$PATH "$(./tool/go env GOPATH)/bin/govulncheck" -test ./...
|
run: PATH=$PWD/tool/:$PATH "$(./tool/go env GOPATH)/bin/govulncheck" -test ./...
|
||||||
|
|
||||||
- uses: ruby/action-slack@v3.2.1
|
- name: Post to slack
|
||||||
with:
|
|
||||||
payload: >
|
|
||||||
{
|
|
||||||
"attachments": [{
|
|
||||||
"title": "${{ job.status }}: ${{ github.workflow }}",
|
|
||||||
"title_link": "https://github.com/${{ github.repository }}/commit/${{ github.sha }}/checks",
|
|
||||||
"text": "${{ github.repository }}@${{ github.sha }}",
|
|
||||||
"color": "danger"
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
env:
|
|
||||||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
||||||
if: failure() && github.event_name == 'schedule'
|
if: failure() && github.event_name == 'schedule'
|
||||||
|
uses: slackapi/slack-github-action@v1.24.0
|
||||||
|
env:
|
||||||
|
SLACK_BOT_TOKEN: ${{ secrets.GOVULNCHECK_BOT_TOKEN }}
|
||||||
|
with:
|
||||||
|
channel-id: 'C05PXRM304B'
|
||||||
|
payload: |
|
||||||
|
{
|
||||||
|
"blocks": [
|
||||||
|
{
|
||||||
|
"type": "section",
|
||||||
|
"text": {
|
||||||
|
"type": "mrkdwn",
|
||||||
|
"text": "Govulncheck failed in ${{ github.repository }}"
|
||||||
|
},
|
||||||
|
"accessory": {
|
||||||
|
"type": "button",
|
||||||
|
"text": {
|
||||||
|
"type": "plain_text",
|
||||||
|
"text": "View results"
|
||||||
|
},
|
||||||
|
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user