Skip to content

Delete teams/ide.asciidoc: teams are maintained as github team #149

Delete teams/ide.asciidoc: teams are maintained as github team

Delete teams/ide.asciidoc: teams are maintained as github team #149

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Update
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "17"
- name: npm install
run: |
cd ./scripts
npm install
cd ..
- name: update teams
run: |
node ./scripts/updateTeams.js "./teams" ${{ secrets.GH_TOKEN }}
- name: update labels
run: |
node ./scripts/updateLabels.js "./teams" ${{ secrets.GH_TOKEN }}