-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH Add scripts to remove health files. (#38)
- Loading branch information
1 parent
c1e0340
commit 1eaf525
Showing
2 changed files
with
20 additions
and
0 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,10 @@ | ||
<?php | ||
|
||
// This file propogates from the .github repository. | ||
// See https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file#supported-file-types | ||
if (module_account() === 'silverstripe' && module_name() !== '.github') { | ||
delete_file_if_exists('contributing.md'); | ||
delete_file_if_exists('CONTRIBUTING.md'); | ||
delete_file_if_exists('contributing'); | ||
delete_file_if_exists('CONTRIBUTING'); | ||
} |
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,10 @@ | ||
<?php | ||
|
||
// This file propogates from the .github repository. | ||
// See https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file#supported-file-types | ||
if (module_account() === 'silverstripe' && module_name() !== '.github') { | ||
delete_file_if_exists('support.md'); | ||
delete_file_if_exists('SUPPORT.md'); | ||
delete_file_if_exists('support'); | ||
delete_file_if_exists('SUPPORT'); | ||
} |