From ba123393bec0378cdfc10f76f44b2760202617f9 Mon Sep 17 00:00:00 2001 From: Fabi <38692350+fgerschwiler@users.noreply.github.com> Date: Thu, 27 Aug 2020 14:43:07 +0200 Subject: [PATCH] chore: delete main.yml (#648) --- .github/workflows/main.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 993c587d5e..0000000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Auto Assign to Project(s) - -on: - issues: - types: [opened, labeled] - pull_request: - types: [opened, labeled] -env: - MY_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -jobs: - assign_one_project: - runs-on: ubuntu-latest - name: Assign to One Project - steps: - - name: Assign NEW issues and NEW pull requests to project 9 (ZITADEL) - uses: srggrs/assign-one-project-github-action@1.2.0 - if: github.event.action == 'opened' - with: - project: 'https://github.com/orgs/caos/projects/9' - column_name: 'backlog' - - - name: Assign issues and pull requests with `bug` label to project 9 (ZITADEL) - uses: srggrs/assign-one-project-github-action@1.2.0 - if: | - contains(github.event.issue.labels.*.name, 'bug') || - contains(github.event.pull_request.labels.*.name, 'bug') - with: - project: 'https://github.com/orgs/caos/projects/9' - column_name: 'to do'