2021-09-01 15:05:11 -04:00
|
|
|
name: Validate manifest
|
|
|
|
|
|
|
|
on:
|
2021-10-14 09:57:30 -04:00
|
|
|
schedule:
|
|
|
|
- cron: '0 8,20 * * *'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-09-01 15:05:11 -04:00
|
|
|
- main
|
2021-10-14 09:57:30 -04:00
|
|
|
paths:
|
2021-09-15 06:58:37 -04:00
|
|
|
- 'versions-manifest.json'
|
2021-10-14 09:57:30 -04:00
|
|
|
|
2021-09-01 15:05:11 -04:00
|
|
|
env:
|
|
|
|
TOOL_NAME: "Go"
|
2021-10-14 09:57:30 -04:00
|
|
|
|
2021-09-01 15:05:11 -04:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
2021-10-14 09:57:30 -04:00
|
|
|
|
2021-09-01 15:05:11 -04:00
|
|
|
jobs:
|
|
|
|
validation:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-10-14 09:57:30 -04:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
2021-09-01 15:05:11 -04:00
|
|
|
submodules: true
|
2021-10-14 09:57:30 -04:00
|
|
|
|
|
|
|
- name: Validate python-versions manifest
|
|
|
|
run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json'
|
2021-09-01 15:05:11 -04:00
|
|
|
|
|
|
|
check_build:
|
|
|
|
name: Check validation for failures
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [validation]
|
2021-09-01 15:19:40 -04:00
|
|
|
if: failure()
|
2021-09-01 15:05:11 -04: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"
|