Skip to content

🐞[Bug]: Unneccesary redirecting to a seperate 'Rate us' and 'Contact Us' page when it should be routed to the 'Rate Us' section and the 'Contact Us' section respectively present at the bottom of the home page #86

🐞[Bug]: Unneccesary redirecting to a seperate 'Rate us' and 'Contact Us' page when it should be routed to the 'Rate Us' section and the 'Contact Us' section respectively present at the bottom of the home page

🐞[Bug]: Unneccesary redirecting to a seperate 'Rate us' and 'Contact Us' page when it should be routed to the 'Rate Us' section and the 'Contact Us' section respectively present at the bottom of the home page #86

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