Skip to content

[bug][python][submit] Bug Report #30

[bug][python][submit] Bug Report

[bug][python][submit] Bug Report #30

Workflow file for this run

name: Issue Label
on:
issues:
types: [opened, edited, reopened]
jobs:
issue-label:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Add labels based on issue title
run: |
echo ${{ github.event.issue.title }}
echo ${{ github.event.issue.number}}
node .github/scripts/add-labels.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}