Skip to content

[Bug]: When we close the exit button it shows 405 Not Allowed #35

[Bug]: When we close the exit button it shows 405 Not Allowed

[Bug]: When we close the exit button it shows 405 Not Allowed #35

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
});