forked from Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80b1834
commit df5a62c
Showing
3 changed files
with
75 additions
and
59 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 |
---|---|---|
@@ -1,32 +1,30 @@ | ||
<!-- ISSUE & PR TITLE SHOULD BE SAME--> | ||
## Description | ||
<!--Please include a brief description of the changes or features added--> | ||
|
||
[Please include a brief description of the changes or features added] | ||
|
||
## Related Issues | ||
|
||
[Cite any related issue(s) this pull request addresses. If none, simply state “None”] | ||
<!--Cite any related issue(s) this pull request addresses. If none, simply state “None”--> | ||
- Closes # | ||
|
||
## Type of PR | ||
|
||
- [ ] Bug fix | ||
- [ ] Feature enhancement | ||
- [ ] Documentation update | ||
- [ ] Other (specify): _______________ | ||
<!-- Mention PR Type according to the issue in brackets below and check the below box --> | ||
- [ ] () | ||
|
||
## Screenshots / videos (if applicable) | ||
[Attach any relevant screenshots or videos demonstrating the changes] | ||
<!--Attach any relevant screenshots or videos demonstrating the changes--> | ||
|
||
|
||
## Checklist | ||
|
||
<!-- [X] - put a cross/X inside [] to check the box --> | ||
- [ ] I have gone through the [contributing guide](https://github.com/Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-/) | ||
- [ ] I have updated my branch and synced it with project `main` branch before making this PR | ||
- [ ] I have performed a self-review of my code | ||
- [ ] I have tested the changes thoroughly before submitting this pull request. | ||
- [ ] I have provided relevant issue numbers, screenshots, and videos after making the changes. | ||
- [ ] I have commented my code, particularly in hard-to-understand areas. | ||
<!-- [X] - put a cross/X inside [] to check the box --> | ||
|
||
|
||
## Additional context: | ||
[Include any additional information or context that might be helpful for reviewers.] | ||
<!--Include any additional information or context that might be helpful for reviewers.--> |
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 |
---|---|---|
@@ -1,37 +1,47 @@ | ||
name: Auto Label Issues | ||
name: Auto Label Issue | ||
|
||
on: | ||
issues: | ||
types: [opened, edited] | ||
types: [opened, reopened, edited] | ||
|
||
jobs: | ||
label_issues: | ||
label_issue: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/github-script@v6 | ||
- name: Label Issue | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const issue = context.payload.issue; | ||
const title = issue.title.toLowerCase(); | ||
const body = issue.body.toLowerCase(); | ||
const labels = []; | ||
if (title.includes('gssoc') || body.includes('gssoc')) { | ||
labels.push('GSSoC'); | ||
} | ||
if (title.includes('enhancement') || body.includes('enhancement')) { | ||
labels.push('Enhancement'); | ||
} | ||
if (title.includes('bug') || body.includes('bug')) { | ||
labels.push('Bug'); | ||
} | ||
if (title.includes('documentation') || body.includes('documentation')) { | ||
labels.push('Documentation'); | ||
} | ||
if (labels.length > 0) { | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
const issueBody = issue.body ? issue.body.toLowerCase() : ''; | ||
const issueTitle = issue.title.toLowerCase(); | ||
// Add gssoc label to all issues | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: issue.number, | ||
labels: ['gssoc'] | ||
}); | ||
const addLabel = async (label) => { | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.name, | ||
labels: labels | ||
repo: context.repo.repo, | ||
issue_number: issue.number, | ||
labels: [label] | ||
}); | ||
}; | ||
if (issueBody.includes('documentation') || issueTitle.includes('doc') || issueBody.includes('readme')) { | ||
await addLabel('documentation'); | ||
} | ||
if (issueBody.includes('feature') || issueBody.includes('enhancement') || issueTitle.includes('add') || issueTitle.includes('implement')) { | ||
await addLabel('enhancement'); | ||
} | ||
if (issueBody.includes('bug') || issueBody.includes('fix') || issueTitle.includes('fix') || issueTitle.includes('resolve')) { | ||
await addLabel('bug'); | ||
} |
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 |
---|---|---|
@@ -1,43 +1,51 @@ | ||
name: Auto Label PRs | ||
|
||
name: Auto Label PR | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, synchronize] | ||
types: [opened, reopened, edited,synchronize] | ||
|
||
jobs: | ||
label_prs: | ||
label_pr: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: actions/github-script@v6 | ||
- name: Label PR | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const pr = context.payload.pull_request; | ||
const title = pr.title.toLowerCase(); | ||
const body = pr.body ? pr.body.toLowerCase() : ''; | ||
const labels = []; | ||
// Add gssoc label to all PRs | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: pr.number, | ||
labels: ['gssoc'] | ||
}); | ||
if (title.includes('gssoc') || body.includes('gssoc')) { | ||
labels.push('GSSoC'); | ||
} | ||
const prBody = pr.body ? pr.body.toLowerCase() : ''; | ||
const prTitle = pr.title.toLowerCase(); | ||
if (title.includes('enhancement') || body.includes('enhancement')) { | ||
labels.push('Enhancement'); | ||
} | ||
const addLabel = async (label) => { | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: pr.number, | ||
labels: [label] | ||
}); | ||
}; | ||
if (title.includes('bug') || body.includes('bug')) { | ||
labels.push('Bug'); | ||
if (prBody.includes('documentation') || prTitle.includes('doc') || prBody.includes('readme')) { | ||
await addLabel('documentation'); | ||
} | ||
if (title.includes('documentation') || body.includes('documentation')) { | ||
labels.push('Documentation'); | ||
if (prBody.includes('feature') || prBody.includes('enhancement') || prTitle.includes('add') || prTitle.includes('implement')) { | ||
await addLabel('enhancement'); | ||
} | ||
if (labels.length > 0) { | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.name, | ||
labels: labels | ||
}); | ||
if (prBody.includes('bug') || prBody.includes('fix') || prTitle.includes('fix') || prTitle.includes('resolve')) { | ||
await addLabel('bug'); | ||
} |