This repository has been archived by the owner on Apr 1, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1263 from FreeCodeCamp/fix/var-ci
Update .varci.yml
- Loading branch information
Showing
1 changed file
with
19 additions
and
3 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,13 +1,29 @@ | ||
ruleset: | ||
comment_and_close_issue: | ||
name: "Comment, label & close pull requests or issues" | ||
events: [ issues, pull_request ] | ||
name: "Comment, label & close issues" | ||
events: [ issues ] | ||
label: invalid | ||
when: | ||
- action = "opened" | ||
- sender.type contains "User" | ||
close: true | ||
comment: > | ||
Hi @{{ user.login }} | ||
We have moved to the [forum](http://forum.freecodecamp.com/c/wiki). Please make your changes there. | ||
We have moved to the [forum](http://forum.freecodecamp.com/c/wiki). We no longer accept opening new issues. | ||
Happy Coding! | ||
comment_and_close_pull_request: | ||
name: "Comment, label & close pull requests" | ||
events: [ pull_request ] | ||
label: invalid | ||
when: | ||
- action = "opened" | ||
- sender.type contains "User" | ||
close: true | ||
comment: > | ||
Hi @{{ user.login }} | ||
We have moved to the [forum](http://forum.freecodecamp.com/c/wiki). Please make your changes there. | ||
Happy Coding! |