go-versions/.github/workflows/validate-manifest.yml

49 lines
1.4 KiB
YAML
Raw Normal View History

2021-09-01 19:05:11 +00:00
name: Validate manifest
on:
schedule:
- cron: '0 8,20 * * *'
pull_request:
branches:
2021-09-01 19:05:11 +00:00
- main
paths:
2021-09-15 10:58:37 +00:00
- 'versions-manifest.json'
2021-09-01 19:05:11 +00:00
env:
TOOL_NAME: "Go"
2021-09-01 19:05:11 +00:00
defaults:
run:
shell: pwsh
2021-09-01 19:05:11 +00:00
jobs:
validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
2021-09-01 19:05:11 +00:00
submodules: true
- name: Validate python-versions manifest
run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json'
2021-09-01 19:05:11 +00:00
check_build:
name: Check validation for failures
runs-on: ubuntu-latest
needs: [validation]
2021-09-01 19:19:40 +00:00
if: failure()
2021-09-01 19:05:11 +00:00
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Send Slack notification if validation fails
run: |
$pipelineUrl = "$env:GITHUB_SERVER_URL/$env:GITHUB_REPOSITORY/actions/runs/$env:GITHUB_RUN_ID"
$message = "The validation of go-versions manifest failed. \nLink to the pipeline: $pipelineUrl"
.\helpers\get-new-tool-versions\send-slack-notification.ps1 -Url "${{ secrets.SLACK_CHANNEL_URL }}" `
-ToolName "${{ env.TOOL_NAME }}" `
-Text "$message" `
-ImageUrl "https://golang.org/lib/godoc/images/footer-gopher.jpg"