From b34b946989524dacbf54efef5b32aa217492577e Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Fri, 25 Aug 2023 17:33:09 -0400 Subject: [PATCH 1/2] Use `copy-pr-bot` This PR replaces the `copy_prs` functionality from the `ops-bot` with the new dedicated `copy-pr-bot` GitHub application. Thorough documentation for the new `copy-pr-bot` application can be viewed below. - https://docs.gha-runners.nvidia.com/apps/copy-pr-bot/ **Important**: `copy-pr-bot` enforces signed commits. If an organization member opens a PR that contains unsigned commits, it will be deemed untrusted and therefore require an `/ok to test` comment. See the GitHub docs [here](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification) for information on how to set up commit signing. Any time a PR is deemed untrusted, it will receive a comment that looks like this: https://github.com/rapidsai/ci-imgs/pull/63#issuecomment-1688973208. Every subsequent commit on an untrusted PR will require an additional `/ok to test` comment. Any existing PRs that have unsigned commits after this change is merged will require an `/ok to test` comment for each subsequent commit _or_ the PR can be rebased to include signed commits as mentioned in the docs below: https://docs.gha-runners.nvidia.com/cpr/contributors. This information is all included on the documentation page linked above. _I've skipped CI on this PR since it's not a change that is tested._ [skip ci] --- .github/copy-pr-bot.yaml | 4 ++++ .github/ops-bot.yaml | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .github/copy-pr-bot.yaml diff --git a/.github/copy-pr-bot.yaml b/.github/copy-pr-bot.yaml new file mode 100644 index 000000000..895ba83ee --- /dev/null +++ b/.github/copy-pr-bot.yaml @@ -0,0 +1,4 @@ +# Configuration file for `copy-pr-bot` GitHub App +# https://docs.gha-runners.nvidia.com/apps/copy-pr-bot/ + +enabled: true diff --git a/.github/ops-bot.yaml b/.github/ops-bot.yaml index 634a8f9f9..35f65420d 100644 --- a/.github/ops-bot.yaml +++ b/.github/ops-bot.yaml @@ -2,5 +2,4 @@ auto_merger: false branch_checker: false label_checker: false release_drafter: false -copy_prs: true rerun_tests: false From 52ce3e57900bdea34f511521e90e276c9600c82f Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Fri, 25 Aug 2023 17:33:39 -0400 Subject: [PATCH 2/2] rm extraneous file --- .github/ops-bot.yaml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .github/ops-bot.yaml diff --git a/.github/ops-bot.yaml b/.github/ops-bot.yaml deleted file mode 100644 index 35f65420d..000000000 --- a/.github/ops-bot.yaml +++ /dev/null @@ -1,5 +0,0 @@ -auto_merger: false -branch_checker: false -label_checker: false -release_drafter: false -rerun_tests: false