From bd5e6393b5de61be27727f39568945d88f1a9edf Mon Sep 17 00:00:00 2001 From: Mykhailo Kuznietsov Date: Thu, 7 Nov 2024 11:25:30 +0200 Subject: [PATCH] chore: delete unused workflows Signed-off-by: Mykhailo Kuznietsov --- .github/workflows/pull-request-assigned.yml | 26 ------------------- .github/workflows/pull-request-drafts.yml | 26 ------------------- .github/workflows/pull-request-opened.yml | 28 --------------------- 3 files changed, 80 deletions(-) delete mode 100644 .github/workflows/pull-request-assigned.yml delete mode 100644 .github/workflows/pull-request-drafts.yml delete mode 100644 .github/workflows/pull-request-opened.yml diff --git a/.github/workflows/pull-request-assigned.yml b/.github/workflows/pull-request-assigned.yml deleted file mode 100644 index 544fc79739..0000000000 --- a/.github/workflows/pull-request-assigned.yml +++ /dev/null @@ -1,26 +0,0 @@ -# -# Copyright (c) 2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Automate pull requests triage - -name: Pull request assigned - -on: - pull_request_target: - types: - - assigned - -jobs: - automate-project-columns: - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@v0.8.3 - with: - project: Reviews - column: In progress - repo-token: ${{ secrets.CHE_BOT_GITHUB_TOKEN }} diff --git a/.github/workflows/pull-request-drafts.yml b/.github/workflows/pull-request-drafts.yml deleted file mode 100644 index 44f11e1805..0000000000 --- a/.github/workflows/pull-request-drafts.yml +++ /dev/null @@ -1,26 +0,0 @@ -# -# Copyright (c) 2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Automate pull requests triage - -name: Pull request opened - -on: - pull_request_target: - types: - - converted_to_draft - -jobs: - automate-project-columns: - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@v0.8.3 - with: - project: Reviews - column: Drafts - repo-token: ${{ secrets.CHE_BOT_GITHUB_TOKEN }} diff --git a/.github/workflows/pull-request-opened.yml b/.github/workflows/pull-request-opened.yml deleted file mode 100644 index 3a1eeb4711..0000000000 --- a/.github/workflows/pull-request-opened.yml +++ /dev/null @@ -1,28 +0,0 @@ -# -# Copyright (c) 2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Automate pull requests triage - -name: Pull request opened - -on: - pull_request_target: - types: - - opened - - ready_for_review - - unassigned - -jobs: - automate-project-columns: - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@v0.8.3 - with: - project: Reviews - column: Triage - repo-token: ${{ secrets.CHE_BOT_GITHUB_TOKEN }}