Skip to content

bump tools

bump tools #2

Workflow file for this run

name: [M] Setup IRC channels

Check failure on line 1 in .github/workflows/setup-irc.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/setup-irc.yml

Invalid workflow file

You have an error in your yaml syntax
on:
workflow_dispatch:
inputs:
sessionNumber:
description: 'Session issue number or "all" to initialize IRC channels for all valid sessions in the slot.'
required: true
default: 'all'
type: string
dismiss:
description: 'Setup channel, or dismiss bots'
required: true
default: 'setup'
type: choice
options:
- setup
- dismiss
jobs:
update-calendar:
name: Setup IRC channels
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
# Note: no "package-lock.json" and no "npm ci" on purpose to retrieve
# latest version of w3c/tpac-breakouts tools (which are unversioned)
- name: Install dependencies
run: npm install
- name: Run the setup script
run: npx setup-irc ${{ inputs.sessionNumber }} full ${{ inputs.dismiss }}
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 }}
# A valid Personal Access Token (classic version) with project
# and public_repo scope.
GRAPHQL_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.
CHAIR_W3CID: ${{ vars.CHAIR_W3CID }}