Skip to content

Commit

Permalink
Merge pull request #223 from aditiverma-21/main
Browse files Browse the repository at this point in the history
Implement Auto-Labeling Workflow for GitHub
  • Loading branch information
TenzDelek authored Nov 8, 2024
2 parents 721d022 + c0a5f07 commit e5ca3ce
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 e5ca3ce

Please sign in to comment.