Skip to content

Commit

Permalink
Create auto-label.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aditiverma-21 authored Nov 6, 2024
1 parent 3bfa9f9 commit 1661f9a
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/auto-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Auto Label Issue/PR

on:
issues:
types: [opened, reopened, edited]
pull_request:
types: [opened, reopened, edited]

jobs:
label_issue_pr:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Label Issue/PR
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const isIssue = context.payload.issue !== undefined;
const item = isIssue ? context.payload.issue : context.payload.pull_request;
const itemBody = item.body ? item.body.toLowerCase() : '';
const itemTitle = item.title.toLowerCase();
// Add labels to both issues and pull requests
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: item.number,
labels: ['gssoc-ext', 'hacktoberfest-accepted']
});
const addLabel = async (label) => {
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: item.number,
labels: [label]
});
};

0 comments on commit 1661f9a

Please sign in to comment.