Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3bd26af129ce
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ac2e87944c3b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 15, 2019

  1. Add configuration for GitHub stale bot

    The configuration added is taken from RFC 0051, and is the first step
    toward implementing it. Next, we will have to enable the stale bot by
    installing the GitHub application.
    
    https://github.com/NixOS/rfcs/blob/master/rfcs/0051-mark-stale-issues.md
    ryantm committed Nov 15, 2019
    Copy the full SHA
    dc4339d View commit details

Commits on Nov 16, 2019

  1. Merge pull request #73444 from ryantm/stale

    Add configuration for GitHub stale bot
    ryantm authored Nov 16, 2019
    Copy the full SHA
    ac2e879 View commit details
Showing with 32 additions and 0 deletions.
  1. +32 −0 .github/stale.yml
32 changes: 32 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 180
# Number of days of inactivity before a stale issue is closed
daysUntilClose: false
# Issues with these labels will never be considered stale
exemptLabels:
- 1.severity: security
# Label to use when marking an issue as stale
staleLabel: 2.status: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
Thank you for your contributions.
This has been automatically marked as stale because it has had no
activity for 180 days.
If this is still important to you, we ask that you leave a
comment below. Your comment can be as simple as "still important
to me". This lets people see that at least one person still cares
about this. Someone will have to do this at most twice a year if
there is no other activity.
Here are suggestions that might help resolve this more quickly:
1. Search for maintainers and people that previously touched the
related code and @ mention them in a comment.
2. Ask on the [NixOS Discourse](https://discourse.nixos.org/).
3. Ask on the [#nixos channel](irc://irc.freenode.net/#nixos) on
[irc.freenode.net](https://freenode.net).
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false