-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
10 changed files
with
155 additions
and
12 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,26 @@ | ||
# Set to true to add reviewers to pull requests | ||
addReviewers: true | ||
|
||
# Set to true to add assignees to pull requests | ||
addAssignees: author | ||
|
||
# A list of reviewers to be added to pull requests (GitHub user name) | ||
reviewers: | ||
- iamwatchdogs | ||
|
||
# A number of reviewers added to the pull request | ||
# Set 0 to add all the reviewers (default: 0) | ||
numberOfReviewers: 1 | ||
|
||
# A list of assignees, overrides reviewers if set | ||
# assignees: | ||
# - assigneeA | ||
|
||
# A number of assignees to add to the pull request | ||
# Set to 0 to add all of the assignees. | ||
# Uses numberOfReviewers if unset. | ||
# numberOfAssignees: 2 | ||
|
||
# A list of keywords to be skipped the process that add reviewers if pull requests include it | ||
# skipKeywords: | ||
# - wip |
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,15 @@ | ||
name: Auto Assign | ||
|
||
on: | ||
pull_request: | ||
types: [opened, ready_for_review] | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
auto-assign: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kentaro-m/auto-assign-action@v1.2.5 | ||
with: | ||
configuration-path: '.github/auto-assign-config.yml' |
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,30 @@ | ||
name: Auto-commenter | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [closed] | ||
|
||
permissions: | ||
id-token: write | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
automated-message: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: wow-actions/auto-comment@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
pullRequestOpened: | | ||
👋 @{{ author }} | ||
Thank you for raising your pull request. | ||
Please make sure you have followed our contributing guidelines. We will review it as soon as possible. | ||
pullRequestClosed: > | ||
👋 @{{ author }} This PR is closed. If you think there's been a mistake, please contact with the maintainer @iamwatchdogs. | ||
pullRequestMerged: | | ||
Thank you for contributing @{{ author }}, Make sure to check your contribution on [GitHub Pages](grow-with-open-source.github.io/Notebook/ "view contributions"). |
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,45 @@ | ||
name: hacktoberfest-labeler | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, closed] | ||
|
||
jobs: | ||
auto-labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for hacktoberfest season | ||
id: check-month | ||
run: | | ||
current_month=$(date +'%m') | ||
if [ "$current_month" == "10" ]; then | ||
echo "is_october=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "is_october=false" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Creating config file | ||
env: | ||
ACTION: ${{ github.event.action }} | ||
run: | | ||
touch ./hacktoberfest-labeler.yml | ||
if [ "$ACTION" != "closed" ]; then | ||
echo "hacktoberfest:" > hacktoberfest-labeler.yml | ||
else | ||
echo "hacktoberfest-accepted:" > hacktoberfest-labeler.yml | ||
fi | ||
echo "- changed-files:" >> hacktoberfest-labeler.yml | ||
echo " - any-glob-to-any-file: '**'" >> hacktoberfest-labeler.yml | ||
echo "Created the config file:" | ||
echo "------------------------" | ||
cat ./hacktoberfest-labeler.yml | ||
- name: Label the PRs | ||
if: steps.check-month.outputs.is_october == 'true' || | ||
github.event.pull_request.merged == 'true' && | ||
contains(github.event.pull_request.labels.*.name, 'hacktoberfest') | ||
uses: actions/labeler@v5.0.0 | ||
with: | ||
configuration-path: ./hacktoberfest-labeler.yml |
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,25 @@ | ||
name: close-stale-issue-and-prs | ||
|
||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
|
||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v8 | ||
with: | ||
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.' | ||
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.' | ||
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.' | ||
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.' | ||
days-before-issue-stale: 30 | ||
days-before-pr-stale: 45 | ||
days-before-issue-close: 5 | ||
days-before-pr-close: 10 |
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
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
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,4 +1,4 @@ | ||
shamith_watchdogs: | ||
name: Shamith Nakka | ||
twitter: Shamith29188225 | ||
twitter: shamith_nakka | ||
url: https://github.com/iamwatchdogs/ |
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
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 |
---|---|---|
|
@@ -25,7 +25,9 @@ html { | |
} | ||
} | ||
|
||
font-size: 16px; | ||
& { | ||
font-size: 16px; | ||
} | ||
} | ||
|
||
body { | ||
|