forked from smaranjitghose/doc2pen
-
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.
Merge branch 'master' of https://github.com/smaranjitghose/doc2pen in…
…to bug-sketch-crosshair
- Loading branch information
Showing
28 changed files
with
11,410 additions
and
28,914 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
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,19 +1,19 @@ | ||
# Reference: https://github.com/Renato66/auto-label | ||
name: Labeling new issue | ||
# The event that triggers the workflow | ||
on: | ||
issues: | ||
types: ['opened'] | ||
jobs: | ||
build: | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
# The tasks each job should run | ||
steps: | ||
- uses: Renato66/auto-label@v2 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
ignore-comments: true | ||
labels-synonyms: '{"bug":["error","need fix","not working"],"enhancement":["upgrade"],"question":["help"]}' | ||
labels-not-allowed: '["good first issue"]' | ||
default-labels: '["gssoc21"]' | ||
# Reference: https://github.com/Renato66/auto-label | ||
name: Labeling new issue | ||
# The event that triggers the workflow | ||
on: | ||
issues: | ||
types: ["opened"] | ||
jobs: | ||
build: | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
# The tasks each job should run | ||
steps: | ||
- uses: Renato66/auto-label@v2 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
ignore-comments: true | ||
labels-synonyms: '{"bug":["error","need fix","not working"],"enhancement":["upgrade"],"question":["help"]}' | ||
labels-not-allowed: '["good first issue"]' | ||
default-labels: '["gssoc21"]' |
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,13 +1,13 @@ | ||
name: 'Check for merge conflicts' | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mschilde/auto-label-merge-conflicts@master | ||
with: | ||
CONFLICT_LABEL_NAME: 'merge-conflict' | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
name: "Check for merge conflicts" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mschilde/auto-label-merge-conflicts@master | ||
with: | ||
CONFLICT_LABEL_NAME: "merge-conflict" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,23 +1,23 @@ | ||
name: Mind your language | ||
# The events that triggers the workflow | ||
on: | ||
issues: | ||
types: [opened, edited] # issue is opened or edited | ||
issue_comment: | ||
types: [created, edited] # issue comment is created or edited | ||
pull_request_review_comment: | ||
types: [created, edited] # PR comment is created or edited | ||
|
||
jobs: | ||
echo_issue_comment: | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
name: profanity check | ||
# The tasks each job should run | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Profanity check step | ||
uses: tailaiw/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
name: Mind your language | ||
# The events that triggers the workflow | ||
on: | ||
issues: | ||
types: [opened, edited] # issue is opened or edited | ||
issue_comment: | ||
types: [created, edited] # issue comment is created or edited | ||
pull_request_review_comment: | ||
types: [created, edited] # PR comment is created or edited | ||
|
||
jobs: | ||
echo_issue_comment: | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
name: profanity check | ||
# The tasks each job should run | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Profanity check step | ||
uses: tailaiw/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,19 +1,19 @@ | ||
# Reference: https://github.com/imjohnbo/gh-polls-bot-action | ||
name: Poll Bot | ||
# The events that triggers the workflow | ||
on: | ||
issue_comment: | ||
types: [created, edited] # issue comment is created or edited | ||
issues: | ||
types: [opened, edited] # issue is opened or edited | ||
|
||
jobs: | ||
polls: | ||
name: Poll Bot | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
# The tasks each job should run | ||
steps: | ||
- uses: imjohnbo/gh-polls-bot-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# Reference: https://github.com/imjohnbo/gh-polls-bot-action | ||
name: Poll Bot | ||
# The events that triggers the workflow | ||
on: | ||
issue_comment: | ||
types: [created, edited] # issue comment is created or edited | ||
issues: | ||
types: [opened, edited] # issue is opened or edited | ||
|
||
jobs: | ||
polls: | ||
name: Poll Bot | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
# The tasks each job should run | ||
steps: | ||
- uses: imjohnbo/gh-polls-bot-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,16 +1,16 @@ | ||
# Reference: https://github.com/derkinderfietsen/pr-description-enforcer | ||
name: 'PR Description Enforcer' | ||
# The event that triggers the workflow | ||
on: | ||
pull_request: | ||
types: [opened, edited, reopened] | ||
|
||
jobs: | ||
enforce: | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
# The tasks each job should run | ||
steps: | ||
- uses: derkinderfietsen/pr-description-enforcer@v1 | ||
with: | ||
repo-token: '${{ secrets.GITHUB_TOKEN }}' | ||
# Reference: https://github.com/derkinderfietsen/pr-description-enforcer | ||
name: "PR Description Enforcer" | ||
# The event that triggers the workflow | ||
on: | ||
pull_request: | ||
types: [opened, edited, reopened] | ||
|
||
jobs: | ||
enforce: | ||
# The machine each job should run | ||
runs-on: ubuntu-latest | ||
# The tasks each job should run | ||
steps: | ||
- uses: derkinderfietsen/pr-description-enforcer@v1 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
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 |
---|---|---|
|
@@ -5,22 +5,22 @@ on: | |
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- master | ||
|
||
jobs: | ||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
# Make sure the actual branch is checked out when running on pull requests | ||
ref: ${{ github.head_ref }} | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
# Make sure the actual branch is checked out when running on pull requests | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Prettify code | ||
uses: creyD/[email protected] | ||
with: | ||
prettier_options: --write **/*.{js,jsx,scss,md} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Prettify code | ||
uses: creyD/[email protected] | ||
with: | ||
prettier_options: --write **/*.{js,jsx,scss,md} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.