diff options
author | Ed Santiago <santiago@redhat.com> | 2022-05-17 13:55:01 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2022-05-17 13:55:01 -0600 |
commit | c632a2efcd7110327fda85e42ee00d0bb4c8c570 (patch) | |
tree | 9bc4d74ebf46e2fa343bcd915c3cbf31564c5011 /.github/dependabot.yml | |
parent | 105c6c7dd15c4c8363107deb593017c8d1762b7b (diff) | |
download | podman-c632a2efcd7110327fda85e42ee00d0bb4c8c570.tar.gz podman-c632a2efcd7110327fda85e42ee00d0bb4c8c570.tar.bz2 podman-c632a2efcd7110327fda85e42ee00d0bb4c8c570.zip |
dependabot: add release-note-none label
Followup to https://github.com/openshift/release/pull/28686
in which we ask openshift-ci-bot to enforce a release-note
label on new PRs.
Dependabot PRs do not need release notes. Add a config setting
(copied from cri-o) that tells dependabot to set release-note-none
on new PRs.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r-- | .github/dependabot.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ec3a8a984..af957ffdd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,16 +4,22 @@ updates: directory: "/" schedule: interval: daily + labels: + - "release-note-none" open-pull-requests-limit: 10 - package-ecosystem: gomod directory: "test/tools" schedule: interval: daily + labels: + - "release-note-none" open-pull-requests-limit: 10 - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" + labels: + - "release-note-none" open-pull-requests-limit: 10 |