Skip to content

Commit

Permalink
code changes
Browse files Browse the repository at this point in the history
#1
  • Loading branch information
Anjaliavv51 committed Jul 25, 2024
1 parent 05cc46b commit e99da0c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/add-gssoc-label-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Add GSSOC Label to PR

on:
pull_request:
types: [opened]

jobs:
add-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["GSSOC"]
})

0 comments on commit e99da0c

Please sign in to comment.