Skip to content

[New Feature]: It is recommended to add a sparkle effect when the cursor moves as it is related to gaming #7

[New Feature]: It is recommended to add a sparkle effect when the cursor moves as it is related to gaming

[New Feature]: It is recommended to add a sparkle effect when the cursor moves as it is related to gaming #7

name: Auto-label on Any Issue
on:
issues:
types: [opened]
jobs:
auto-label:
runs-on: ubuntu-latest
steps:
- name: Add labels to any new issue
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const labelsToAdd = ["gssoc"];
await github.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: labelsToAdd
});