mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
38
.github/dependabot.yml
vendored
Normal file
38
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "gomod"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
labels:
|
||||
- rebase
|
||||
commit-message:
|
||||
prefix: "rebase"
|
||||
ignore:
|
||||
# k8s.io/kubernetes prevents auto-updating these
|
||||
- dependency-name: "k8s.io/api"
|
||||
- dependency-name: "k8s.io/apiextensions-apiserver"
|
||||
- dependency-name: "k8s.io/apimachinery"
|
||||
- dependency-name: "k8s.io/apiserver"
|
||||
- dependency-name: "k8s.io/cli-runtime"
|
||||
- dependency-name: "k8s.io/client-go"
|
||||
- dependency-name: "k8s.io/cloud-provider"
|
||||
- dependency-name: "k8s.io/cluster-bootstrap"
|
||||
- dependency-name: "k8s.io/code-generator"
|
||||
- dependency-name: "k8s.io/component-base"
|
||||
- dependency-name: "k8s.io/component-helpers"
|
||||
- dependency-name: "k8s.io/controller-manager"
|
||||
- dependency-name: "k8s.io/cri-api"
|
||||
- dependency-name: "k8s.io/csi-translation-lib"
|
||||
- dependency-name: "k8s.io/kube-aggregator"
|
||||
- dependency-name: "k8s.io/kube-controller-manager"
|
||||
- dependency-name: "k8s.io/kube-proxy"
|
||||
- dependency-name: "k8s.io/kube-scheduler"
|
||||
- dependency-name: "k8s.io/kubectl"
|
||||
- dependency-name: "k8s.io/kubelet"
|
||||
- dependency-name: "k8s.io/legacy-cloud-providers"
|
||||
- dependency-name: "k8s.io/metrics"
|
||||
- dependency-name: "k8s.io/mount-utils"
|
||||
- dependency-name: "k8s.io/pod-security-admission"
|
||||
- dependency-name: "k8s.io/sample-apiserver"
|
45
.github/stale.yml
vendored
45
.github/stale.yml
vendored
@ -1,45 +0,0 @@
|
||||
# Configuration for probot-stale - https://github.com/probot/stale
|
||||
|
||||
# Issues or Pull Requests with these labels will never be
|
||||
# considered stale. Set to `[]` to disable
|
||||
---
|
||||
exemptLabels:
|
||||
- keepalive
|
||||
- security
|
||||
- reliability
|
||||
- release requirement
|
||||
|
||||
# Set to true to ignore issues in a project (defaults to false)
|
||||
exemptProjects: false
|
||||
|
||||
# Set to true to ignore issues in a milestone (defaults to false)
|
||||
exemptMilestones: true
|
||||
|
||||
# Label to use when marking as stale
|
||||
staleLabel: wontfix
|
||||
|
||||
# Limit the number of actions per hour, from 1-30. Default is 30
|
||||
limitPerRun: 5
|
||||
|
||||
# Specify configuration settings that are specific to issues
|
||||
issues:
|
||||
daysUntilStale: 90
|
||||
daysUntilClose: 7
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
recent activity. It will be closed in a week if no further activity occurs.
|
||||
Thank you for your contributions.
|
||||
closeComment: >
|
||||
This issue has been automatically closed due to inactivity. Please re-open
|
||||
if this still requires investigation.
|
||||
# Specify configuration settings that are specific to PRs
|
||||
pulls:
|
||||
daysUntilStale: 60
|
||||
daysUntilClose: 30
|
||||
markComment: >
|
||||
This pull request has been automatically marked as stale because it has not
|
||||
had recent activity. It will be closed in a month if no further activity
|
||||
occurs. Thank you for your contributions.
|
||||
closeComment: >
|
||||
This pull request has been automatically closed due to inactivity. Please
|
||||
re-open if these changes are still required.
|
40
.github/workflows/stale.yaml
vendored
Normal file
40
.github/workflows/stale.yaml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
---
|
||||
# Reference https://github.com/actions/stale
|
||||
name: "Mark or close stale issues and PRs"
|
||||
# yamllint disable-line rule:truthy
|
||||
on:
|
||||
schedule:
|
||||
# Run the stalebot every day at 9pm UTC
|
||||
- cron: "00 21 * * *"
|
||||
# yamllint disable rule:line-length
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-18.04
|
||||
if: github.repository == 'ceph/ceph-csi'
|
||||
steps:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
days-before-issue-stale: 30
|
||||
days-before-issue-close: 7
|
||||
stale-issue-message: >
|
||||
This issue has been automatically marked as stale because it has not had recent activity.
|
||||
It will be closed in a week if no further activity occurs.
|
||||
Thank you for your contributions.
|
||||
close-issue-message: >
|
||||
This issue has been automatically closed due to inactivity.
|
||||
Please re-open if this still requires investigation.
|
||||
stale-issue-label: "wontfix"
|
||||
exempt-issue-labels: "keepalive,security,reliability,release requirement"
|
||||
|
||||
days-before-pr-stale: 30
|
||||
days-before-pr-close: 14
|
||||
stale-pr-message: >
|
||||
This pull request has been automatically marked as stale because it has not had
|
||||
recent activity. It will be closed in two weeks if no further activity occurs.
|
||||
Thank you for your contributions.
|
||||
close-pr-message: >
|
||||
This pull request has been automatically closed due to inactivity.
|
||||
Please re-open if these changes are still required.
|
||||
stale-pr-label: "stale"
|
||||
exempt-pr-labels: "keepalive,security,reliability,release requirement"
|
Reference in New Issue
Block a user