Skip to content

安装开发板失败 Downloading packages AirM2M:[email protected] AirM2M:[email protected] AirM2M:[email protected] Failed to install platform: 'AirM2M:AirMCU:0.6.4'. Error: 2 UNKNOWN: #18

安装开发板失败 Downloading packages AirM2M:[email protected] AirM2M:[email protected] AirM2M:[email protected] Failed to install platform: 'AirM2M:AirMCU:0.6.4'. Error: 2 UNKNOWN:

安装开发板失败 Downloading packages AirM2M:[email protected] AirM2M:[email protected] AirM2M:[email protected] Failed to install platform: 'AirM2M:AirMCU:0.6.4'. Error: 2 UNKNOWN: #18

Workflow file for this run

name: issue_check
on:
issues:
types: [opened]
workflow_dispatch:
inputs:
issue_url:
description: 'issue url'
required: true
default: 'https://github.com/[user]/[repo]/issues/[id]'
jobs:
issue_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: prepare software
run: |
pip install PyGithub
cd ..
wget https://raw.githubusercontent.com/chenxuuu/action/main/scripts/issue_check.py
- name: check issue
env:
GITHUB_TOKEN: ${{ secrets.ISSUE_CHECK_TOKEN }}
ISSUE_URL: ${{ github.event.issue.html_url }}
ISSUE_URL_INPUT: ${{ github.event.inputs.issue_url }}
run: |
cd ..
python issue_check.py