From 53fdb6f07f36ff182d7e6fd81aee18552cf5d086 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 11 Feb 2023 10:36:40 -0600 Subject: [PATCH] Delete azuresync.yml --- .github/workflows/azuresync.yml | 45 --------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/azuresync.yml diff --git a/.github/workflows/azuresync.yml b/.github/workflows/azuresync.yml deleted file mode 100644 index 476df799e..000000000 --- a/.github/workflows/azuresync.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Sync issue to Azure DevOps work item - -on: - issues: - types: - [opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned] - -concurrency: azuresync-${{ github.event.issue.number }} - -permissions: {} -jobs: - alert: - permissions: - issues: write # to update issue body - - runs-on: ubuntu-latest - steps: - - uses: danhellem/github-actions-issue-to-work-item@master - if: "${{ contains(github.event.issue.labels.*.name, 'Type: Bug') == true }}" - env: - ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" - github_token: "${{ github.token }}" - ado_organization: "Servarr" - ado_project: "Servarr" - ado_area_path: "Servarr\\Radarr" - ado_wit: "Bug" - ado_new_state: "New" - ado_active_state: "Active" - ado_close_state: "Closed" - ado_bypassrules: true - log_level: 100 - - uses: danhellem/github-actions-issue-to-work-item@master - if: "${{ contains(github.event.issue.labels.*.name, 'Type: Bug') == false }}" - env: - ado_token: "${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}" - github_token: "${{ github.token }}" - ado_organization: "Servarr" - ado_project: "Servarr" - ado_area_path: "Servarr\\Radarr" - ado_wit: "User Story" - ado_new_state: "New" - ado_active_state: "Active" - ado_close_state: "Closed" - ado_bypassrules: true - log_level: 100