Skip to content

[M] Validate a session #58

[M] Validate a session

[M] Validate a session #58

name: "[M] Validate a session"
on:
workflow_dispatch:
inputs:
sessionNumber:
description: 'Session issue number'
required: true
type: string
jobs:
validate-session:
name: Validate session
runs-on: ubuntu-latest
steps:
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Checkout latest version of release script
uses: actions/checkout@v4
with:
ref: main
- name: Install dependencies
run: npm ci
- name: Validate session and update project fields
run: npx tpac-breakouts validate ${{ inputs.sessionNumber }} --what everything
env:
# URL of the annual TPAC XXXX breakout project.
# The PROJECT_OWNER and PROJECT_NUMBER variables must be defined on
# the repository. PROJECT_OWNER_TYPE needs to be set to "user" if
# project belongs to a user. It may be omitted otherwise (or set to
# 'org"').
PROJECT_OWNER: ${{ vars.PROJECT_OWNER_TYPE || 'organization' }}/${{ vars.PROJECT_OWNER || 'w3c' }}
PROJECT_NUMBER: ${{ vars.PROJECT_NUMBER }}
# Same valid Personal Access Token (classic version) as above, with
# project and public_repo scope.
GRAPHQL_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}
GH_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}
# Mapping between chair GitHub identities and W3C IDs must be stored
# in a variable. Structure is a JSON object with identities as keys.
W3CID_MAP: ${{ vars.W3CID_MAP }}