Remove infra UI and actionable obs workflows (#154084)

These have been replaced by equivalent GitHub Projects workflows
(example:
7858407)
This commit is contained in:
Nathan L Smith 2023-03-30 12:18:29 -05:00 committed by GitHub
parent 270f94530a
commit 6c3badb8ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 48 deletions

View file

@ -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 }}

View file

@ -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 }}