-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Animated-Emoji
- Loading branch information
Showing
48 changed files
with
8,075 additions
and
1,544 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--> | ||
|
||
[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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Assign Issue to Creator | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
assign-issue: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.comment.body, '/assign') | ||
steps: | ||
- name: Check commenter permissions | ||
id: check-permissions | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const { owner, repo } = context.repo; | ||
const commenter = context.payload.comment.user.login; | ||
const { data: repoPermission } = await github.rest.repos.getCollaboratorPermissionLevel({ | ||
owner, | ||
repo, | ||
username: commenter, | ||
}); | ||
const allowedPermissions = ['admin', 'maintain', 'write']; | ||
const hasPermission = allowedPermissions.includes(repoPermission.permission); | ||
return hasPermission; | ||
- name: Assign issue to creator | ||
if: steps.check-permissions.outputs.result == 'true' | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
script: | | ||
const { owner, repo } = context.repo; | ||
const issue_number = context.issue.number; | ||
const { data: issue } = await github.rest.issues.get({ | ||
owner, | ||
repo, | ||
issue_number, | ||
}); | ||
const creator = issue.user.login; | ||
await github.rest.issues.addAssignees({ | ||
owner, | ||
repo, | ||
issue_number, | ||
assignees: [creator], | ||
}); | ||
console.log(`Assigned issue #${issue_number} to creator ${creator}`); |
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,46 @@ | ||
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'); | ||
} | ||
const issueTitle = issue.title.toLowerCase(); | ||
if (title.includes('bug') || body.includes('bug')) { | ||
labels.push('Bug'); | ||
// 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.repo, | ||
issue_number: issue.number, | ||
labels: [label] | ||
}); | ||
}; | ||
if (issueTitle.includes('documentation')) { | ||
await addLabel('documentation'); | ||
} | ||
if (title.includes('documentation') || body.includes('documentation')) { | ||
labels.push('Documentation'); | ||
if (issueTitle.includes('feature')) { | ||
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 (issueTitle.includes('bug')) { | ||
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Auto Label PRs | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited] | ||
|
||
jobs: | ||
label_pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
configuration-path: .github/labeler.yml | ||
|
||
- name: Add GSSOC label | ||
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'] | ||
}) |
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
Oops, something went wrong.