Skip to content

Commit fb7d9e5

Browse files
author
PulkitSinghDev
committed
label commenter workflow added
Signed-off-by: PulkitSinghDev <[email protected]>
1 parent ad9a943 commit fb7d9e5

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

.github/label-commenter-config.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
comment:
2+
footer: "\
3+
---\n\n
4+
> &nbsp; &#9; &nbsp; &#9; &nbsp; &#9; &nbsp; &#9; Be sure to [join the community](http://slack.layer5.io), if you haven't yet and please leave a :star: [star on the project](../stargazers) :smile: on the project.
5+
"
6+
7+
labels:
8+
- name: issue/design required
9+
labeled:
10+
issue:
11+
body: This issue has been labeled with 'design-required'. Note that prior to commencing on implementation, a design specification needs to be created and reviewed for approval. See [Creating a Functional Specification](https://docs.google.com/document/d/1RP3IWLc-MiQS-QYasqCoVuCH7--G87p5ezE5f_nOzB8/edit?usp=sharing) to create a design spec.
12+
action: open
13+
- name: issue/remind
14+
labeled:
15+
issue:
16+
body: Checking in... it has been awhile since we&#39;ve heard from you on this issue. Are you still working on it? Please let us know and please don&#39;t hesitate to contact a [MeshMate](https://layer5.io/community/meshmates/) or any other [community member](https://layer5.io/community/members) for assistance.
17+
action: open
18+
pr:
19+
body: Checking in... it has been awhile since we&#39;ve heard from you on this issue. Are you still working on it? Please let us know and please don&#39;t hesitate to contact a [MeshMate](https://layer5.io/community/meshmates/) or any other [community member](https://layer5.io/community/members) for assistance.
20+
action: open
21+
- name: issue/dco
22+
labeled:
23+
pr:
24+
body: "🚨 Alert! Git Police! We couldn’t help but notice that one or more of your commits is missing a sign-off. _A what?_ A commit sign-off (your email address).\n\n
25+
To amend the commits in this PR with your signoff using the instructions provided in the DCO check above. \n\n
26+
To configure your dev environment to automatically signoff on your commits in the future, see [these instructions](https://github.com/meshery/meshery/blob/master/CONTRIBUTING.md#signing-off-on-commits-developer-certificate-of-origin)."
27+
action: open

.github/workflows/label-commenter.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Label Commenter
2+
3+
on:
4+
issues:
5+
types:
6+
- labeled
7+
8+
pull_request_target:
9+
types:
10+
- labeled
11+
12+
permissions:
13+
contents: read
14+
issues: write
15+
pull-requests: write
16+
17+
jobs:
18+
comment:
19+
runs-on: ubuntu-18.04
20+
steps:
21+
- uses: actions/checkout@v2
22+
with:
23+
ref: main # Set your default branch
24+
25+
- name: Label Commenter
26+
uses: peaceiris/actions-label-commenter@v1

0 commit comments

Comments
 (0)