Skip to content

UPGRADE REQUIRED to Pieces OS 10.1.12: Copilot Conversations service down for versions less than 10.1.12 #769

UPGRADE REQUIRED to Pieces OS 10.1.12: Copilot Conversations service down for versions less than 10.1.12

UPGRADE REQUIRED to Pieces OS 10.1.12: Copilot Conversations service down for versions less than 10.1.12 #769

Workflow file for this run

name: Updated Labels on Issues
on:
issue_comment:
types: [created]
jobs:
issue_label_updater:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup labeling script
run: cd .github/label-updater && npm install
- name: Run issue label updater script
run: node .github/label-updater/index.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
COMMENT_ID: ${{ github.event.comment.id }}