From a20c75131182c2800feb099a92822f26688d77ec Mon Sep 17 00:00:00 2001 From: efb4f5ff-1298-471a-8973-3d47447115dc <73130443+efb4f5ff-1298-471a-8973-3d47447115dc@users.noreply.github.com> Date: Thu, 11 Jul 2024 13:44:00 +0000 Subject: [PATCH] Delete .github/workflows/report.yml --- .github/workflows/report.yml | 70 ------------------------------------ 1 file changed, 70 deletions(-) delete mode 100644 .github/workflows/report.yml diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml deleted file mode 100644 index 834da028dd957..0000000000000 --- a/.github/workflows/report.yml +++ /dev/null @@ -1,70 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Project Board Automation - -on: - issues: - types: [closed, deleted, reopened, opened] - -jobs: - assign-issues-to-projects: - runs-on: ubuntu-latest - steps: - - # For bug reports - - name: New bug issue - uses: alex-page/github-project-automation-plus@v0.9.0 - if: contains(github.event.issue.labels.*.name, 'bug') && github.event.action == 'opened' - with: - project: Bug Reports - column: To assign - repo-token: ${{ secrets.PUSH_TOKEN }} - action: update - - - name: Bug issue closed - uses: alex-page/github-project-automation-plus@v0.9.0 - if: github.event.action == 'closed' || github.event.action == 'deleted' - with: - action: delete - project: Bug Reports - column: To assign - repo-token: ${{ secrets.PUSH_TOKEN }} - - - name: Bug issue reopened - uses: alex-page/github-project-automation-plus@v0.9.0 - if: contains(github.event.issue.labels.*.name, 'bug') && github.event.action == 'reopened' - with: - project: Bug Reports - column: To assign - repo-token: ${{ secrets.PUSH_TOKEN }} - action: update - - # For feature requests - - name: New feature issue - uses: alex-page/github-project-automation-plus@v0.9.0 - if: contains(github.event.issue.labels.*.name, 'enhancement') && github.event.action == 'opened' - with: - project: Feature Requests - column: To assign - repo-token: ${{ secrets.PUSH_TOKEN }} - action: update - - - name: Feature request issue closed - uses: alex-page/github-project-automation-plus@v0.9.0 - if: github.event.action == 'closed' || github.event.action == 'deleted' - with: - action: delete - project: Feature Requests - column: To assign - repo-token: ${{ secrets.PUSH_TOKEN }} - - - name: Feature request issue reopened - uses: alex-page/github-project-automation-plus@v0.9.0 - if: contains(github.event.issue.labels.*.name, 'enhancement') && github.event.action == 'reopened' - with: - project: Feature Requests - column: To assign - repo-token: ${{ secrets.PUSH_TOKEN }} - action: update - -