-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from aditiverma-21/master
Auto-Label Workflow for Pull Requests and Issues
- Loading branch information
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Greet User | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
pull_request: | ||
types: [opened] | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
greet_user: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Greet User | ||
uses: actions-ecosystem/action-create-comment@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
issue_number: ${{ github.event.issue.number || github.event.pull_request.number }} | ||
body: | | ||
👋 Hello @${{ github.actor }}! | ||
Thank you for your ${{ | ||
github.event_name == 'issues' ? 'issue' : 'pull request' | ||
}}. We're glad you're contributing! | ||
If this is your first time, please check out our [Contribution Guidelines](https://github.com/OWNER/REPO/blob/main/CONTRIBUTING.md) to get familiar with our process. | ||
Happy contributing! 🎉 |