From 6c3badb8ec6dd3bbb6e699bb09e5afcee47b4239 Mon Sep 17 00:00:00 2001 From: Nathan L Smith Date: Thu, 30 Mar 2023 12:18:29 -0500 Subject: [PATCH] Remove infra UI and actionable obs workflows (#154084) These have been replaced by equivalent GitHub Projects workflows (example: https://github.com/orgs/elastic/projects/664/workflows/7858407) --- .github/workflows/add-to-ao-project.yml | 22 ------------------- .github/workflows/add-to-imui-project.yml | 26 ----------------------- 2 files changed, 48 deletions(-) delete mode 100644 .github/workflows/add-to-ao-project.yml delete mode 100644 .github/workflows/add-to-imui-project.yml diff --git a/.github/workflows/add-to-ao-project.yml b/.github/workflows/add-to-ao-project.yml deleted file mode 100644 index 04f434986e6aed..00000000000000 --- a/.github/workflows/add-to-ao-project.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Add issues to Actionable Observability project -on: - issues: - types: [labeled] -jobs: - add_to_project: - name: Add issues to project - runs-on: ubuntu-latest - if: | - github.event.label.name == 'Team: Actionable Observability' - steps: - - name: Add - uses: richkuz/projectnext-label-assigner@1.1.0 - id: add_to_projects - with: - config: | - [ - {"label": "Team: Actionable Observability", "projectNumber": 669} - ] - env: - GRAPHQL_API_BASE: 'https://api.github.com' - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/add-to-imui-project.yml b/.github/workflows/add-to-imui-project.yml deleted file mode 100644 index 9db4b337981315..00000000000000 --- a/.github/workflows/add-to-imui-project.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Add to Infrastructure Observability UI project -on: - issues: - types: [labeled] -jobs: - add_to_project: - name: Add issues to project - runs-on: ubuntu-latest - if: | - contains(github.event.issue.labels.*.name, 'Team:Infra Monitoring UI') || - contains(github.event.issue.labels.*.name, 'Feature:Stack Monitoring') || - contains(github.event.issue.labels.*.name, 'Feature:Logs UI') || - contains(github.event.issue.labels.*.name, 'Feature:Metrics UI') || - contains(github.event.issue.labels.*.name, 'Feature:ObsHosts') - steps: - - name: Add - uses: richkuz/projectnext-label-assigner@1.1.0 - id: add_to_projects - with: - config: | - [ - {"label": "Team:Infra Monitoring UI" , "projectNumber": 664} - ] - env: - GRAPHQL_API_BASE: 'https://api.github.com' - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}