From 0ce74ad98aed579335cddde969afb70f6f2275d4 Mon Sep 17 00:00:00 2001 From: Honza Brestan Date: Tue, 10 Sep 2024 10:25:22 +0200 Subject: [PATCH] Remove QA workflows (#254) --- .../pr-automation-tech-review-qa-assign.yml | 17 ----------------- ...-automation-tech-review-qa-move-on-close.yml | 14 -------------- 2 files changed, 31 deletions(-) delete mode 100644 .github/workflows/pr-automation-tech-review-qa-assign.yml delete mode 100644 .github/workflows/pr-automation-tech-review-qa-move-on-close.yml diff --git a/.github/workflows/pr-automation-tech-review-qa-assign.yml b/.github/workflows/pr-automation-tech-review-qa-assign.yml deleted file mode 100644 index 3734634f..00000000 --- a/.github/workflows/pr-automation-tech-review-qa-assign.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: pr-automation-qa-assign -on: - pull_request: - types: [opened] -env: - MY_GITHUB_TOKEN: ${{ secrets.TECH_ACCOUNT_PERSONAL_ACCESS_TOKEN }} - -jobs: - assign-qa-project: - runs-on: ubuntu-latest - steps: - - name: Assign QA project - uses: srggrs/assign-one-project-github-action@1.3.1 - if: github.event.action == 'opened' - with: - project: 'https://github.com/orgs/MewsSystems/projects/5' - column_name: 'Waiting' diff --git a/.github/workflows/pr-automation-tech-review-qa-move-on-close.yml b/.github/workflows/pr-automation-tech-review-qa-move-on-close.yml deleted file mode 100644 index 6222ee72..00000000 --- a/.github/workflows/pr-automation-tech-review-qa-move-on-close.yml +++ /dev/null @@ -1,14 +0,0 @@ - name: pr-automation-qa-move-on-close - on: - pull_request: - types: [closed] - jobs: - move-to-ready-to-test: - runs-on: ubuntu-latest - steps: - - name: Move to ready to test - uses: alex-page/github-project-automation-plus@v0.9.0 - with: - project: tech.review.qa - column: Ready to test - repo-token: ${{ secrets.TECH_ACCOUNT_PERSONAL_ACCESS_TOKEN }}