Uptake of the latest changes for helpers submodule and remove Access Token usage

This commit is contained in:
nikolai-frolov
2021-10-14 12:27:58 +03:00
parent 5026cafdf4
commit 510c618723
2 changed files with 15 additions and 14 deletions

View File

@@ -1,31 +1,32 @@
name: Validate manifest name: Validate manifest
on: on:
schedule: schedule:
- cron: '0 8,20 * * *' - cron: '0 8,20 * * *'
pull_request: pull_request:
branches: branches:
- main - main
paths: paths:
- 'versions-manifest.json' - 'versions-manifest.json'
env: env:
TOOL_NAME: "Node" TOOL_NAME: "Node"
defaults: defaults:
run: run:
shell: pwsh shell: pwsh
jobs: jobs:
validation: validation:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
submodules: true submodules: true
- name: Validate node-versions manifest - name: Validate node-versions manifest
run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json' -AccessToken ${{ secrets.GITHUB_TOKEN }} run: .\helpers\packages-generation\manifest-validator.ps1 -ManifestPath '.\versions-manifest.json'
check_build: check_build:
name: Check validation for failures name: Check validation for failures

Submodule helpers updated: 8e2a68893f...6f1aa3ce73