Skip to content

Commit d7b8f34

Browse files
authored
Update readme and add GitHub template (#27)
1 parent 49de87a commit d7b8f34

5 files changed

Lines changed: 138 additions & 0 deletions

File tree

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# https://help.github.com/articles/about-codeowners/
2+
3+
# Areas are not limited to the filters defined in this file
4+
5+
**/* @anmenaga @TravisEz13

.github/ISSUE_TEMPLATE.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!--
2+
3+
For Windows PowerShell 5.1 issues, suggestions, or feature requests please use the following link instead:
4+
- Windows PowerShell [UserVoice](https://windowsserver.uservoice.com/forums/301869-powershell)
5+
6+
If it is a bug report:
7+
- make sure you are able to repro it on the latest released version.
8+
- Search the existing issues.
9+
- Fill out the following repro template:
10+
11+
If it's not a bug, please remove the template and elaborate the issue in your own words.
12+
-->
13+
14+
Steps to reproduce
15+
------------------
16+
17+
```powershell
18+
19+
```
20+
21+
Expected behavior
22+
-----------------
23+
24+
```none
25+
26+
```
27+
28+
Actual behavior
29+
---------------
30+
31+
```none
32+
33+
```
34+
35+
Environment data
36+
----------------
37+
38+
<!-- provide the docker info -->
39+
40+
```sh
41+
> docker info
42+
43+
```
44+
45+
<!-- provide the output of $PSVersionTable -->
46+
47+
```powershell
48+
> $PSVersionTable
49+
50+
```

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## PR Summary
2+
3+
<!-- summarize your PR between here and the checklist -->
4+
5+
## PR Checklist
6+
7+
- [ ] [PR has a meaningful title](https://github.com/PowerShell/PowerShell/blob/master/.github/CONTRIBUTING.md#pull-request---submission)
8+
- Use the present tense and imperative mood when describing your changes
9+
- [ ] [Summarized changes](https://github.com/PowerShell/PowerShell/blob/master/.github/CONTRIBUTING.md#pull-request---submission)
10+
- [ ] [Change is not breaking](https://github.com/PowerShell/PowerShell/blob/master/.github/CONTRIBUTING.md#making-breaking-changes)
11+
- [ ] [Make sure all `Dockerfile`, `.sh`, `.ps1` and `.psm1` files have the correct copyright header](https://github.com/PowerShell/PowerShell/blob/master/.github/CONTRIBUTING.md#pull-request---submission)
12+
- [ ] This PR is ready to merge and is not [Work in Progress](https://github.com/PowerShell/PowerShell/blob/master/.github/CONTRIBUTING.md#pull-request---work-in-progress).
13+
- If the PR is work in progress, please add the prefix `WIP:` to the beginning of the title and remove the prefix when the PR is ready.
14+
- **Adds a new image or tag**
15+
- [ ] Not Applicable
16+
- **OR**
17+
- [ ] Update [README.powershell.md](https://github.com/PowerShell/PowerShell-Docker/blob/master/assets/README.powershell.md)
18+
- [ ] Update [vsts-ci.yml](https://github.com/PowerShell/PowerShell-Docker/blob/master/vsts-ci.yml)

.github/stale.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 30
5+
6+
# Number of days of inactivity before a stale Issue or Pull Request is closed.
7+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8+
daysUntilClose: 10
9+
10+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
11+
exemptLabels:
12+
- Issue-Meta
13+
- Issue-Discussion
14+
15+
# Set to true to ignore issues in a project (defaults to false)
16+
exemptProjects: true
17+
18+
# Set to true to ignore issues in a milestone (defaults to false)
19+
exemptMilestones: false
20+
21+
# Label to use when marking as stale
22+
staleLabel: Review - Abandoned
23+
24+
# Comment to post when marking as stale. Set to `false` to disable
25+
markComment: >
26+
This PR has been automatically marked as stale because it has not had activity in the last 30 days.
27+
It will be closed if no further activity occurs within 10 days.
28+
29+
Thank you for your contributions.
30+
31+
Community members are welcome to grab these works.
32+
33+
# Comment to post when removing the stale label.
34+
# unmarkComment: >
35+
# Your comment here.
36+
37+
# Comment to post when closing a stale Issue or Pull Request.
38+
closeComment: >
39+
This PR has be automatically close because it is stale.
40+
If you wish to continue working on the PR, please first update the PR, then reopen it.
41+
42+
Thanks again for your contribution.
43+
44+
Community members are welcome to grab these works.
45+
46+
# Limit the number of actions per hour, from 1-30. Default is 30
47+
limitPerRun: 30
48+
49+
# Limit to only `issues` or `pulls`
50+
only: pulls
51+
52+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
53+
# pulls:
54+
# daysUntilStale: 30
55+
# markComment: >
56+
# This pull request has been automatically marked as stale because it has not had
57+
# recent activity. It will be closed if no further activity occurs. Thank you
58+
# for your contributions.
59+
60+
# issues:
61+
# exemptLabels:
62+
# - confirmed

assets/README.powershell.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151

5252
### Preview Linux amd64 tags
5353

54+
* `6.1.0-preview.4-ubuntu-18.04` [(/release/preview/ubuntu18.04/docker/Dockerfile)][ubuntu-18.04-preview]
55+
* `docker pull mcr.microsoft.com/powershell:6.1.0-preview.4-ubuntu-18.04`
5456
* `6.1.0-preview.4-ubuntu-16.04` [(/release/preview/ubuntu16.04/docker/Dockerfile)][ubuntu-16.04-preview]
5557
* `docker pull mcr.microsoft.com/powershell:6.1.0-preview.4-ubuntu-16.04`
5658
* `6.1.0-preview.4-centos-7` [(/release/preview/centos7/docker/Dockerfile)][centos-7-preview]
@@ -60,6 +62,7 @@
6062
* `6.1.0-preview.4-fedora-28` [(/release/preview/fedora27/docker/Dockerfile)][fedora-27-preview]
6163
* `docker pull mcr.microsoft.com/powershell:6.1.0-preview.4-fedora-28`
6264

65+
[ubuntu-18.04-preview]:https://github.com/PowerShell/PowerShell-Docker/blob/master/release/preview/ubuntu18.04/docker/Dockerfile
6366
[ubuntu-16.04-preview]:https://github.com/PowerShell/PowerShell-Docker/blob/master/release/preview/ubuntu16.04/docker/Dockerfile
6467
[centos-7-preview]:https://github.com/PowerShell/PowerShell-Docker/blob/master/release/preview/centos7/docker/Dockerfile
6568
[fedora-27-preview]:https://github.com/PowerShell/PowerShell-Docker/blob/master/release/stable/fedora27/docker/Dockerfile

0 commit comments

Comments
 (0)