mirror of
https://github.com/actions/node-versions.git
synced 2025-01-11 18:45:19 +00:00
21 lines
603 B
YAML
21 lines
603 B
YAML
name: Validate manifest
|
|
on:
|
|
# 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
|
|
schedule:
|
|
- cron: '0 8,20 * * *'
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'versions-manifest.json'
|
|
|
|
jobs:
|
|
manifest:
|
|
uses: actions/versions-package-tools/.github/workflows/validate-manifest.yml@main
|
|
with:
|
|
tool-name: "Node"
|
|
image-url: "https://nodejs.org/static/images/logo-hexagon-card.png"
|
|
secrets: inherit |