You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
586 B
YAML
21 lines
586 B
YAML
3 years ago
|
name: Validate manifest
|
||
|
on:
|
||
2 years ago
|
# The GITHUB_TOKEN secret is used to create a PR
|
||
|
# The pull_request event will not be triggered by it
|
||
|
# That's one of the reasons we need the schedule to validate the versions-manifest.json file
|
||
3 years ago
|
schedule:
|
||
|
- cron: '0 8,20 * * *'
|
||
2 years ago
|
workflow_dispatch:
|
||
3 years ago
|
pull_request:
|
||
|
branches:
|
||
3 years ago
|
- main
|
||
3 years ago
|
paths:
|
||
3 years ago
|
- 'versions-manifest.json'
|
||
3 years ago
|
|
||
3 years ago
|
jobs:
|
||
2 years ago
|
manifest:
|
||
|
uses: actions/versions-package-tools/.github/workflows/validate-manifest.yml@main
|
||
|
with:
|
||
|
tool-name: "Go"
|
||
|
image-url: "https://go.dev/images/gopher-footer.jpg"
|
||
|
secrets: inherit
|