Skip to content

Commit

Permalink
rename support actions and other cleanup (#101043)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmtolmach authored Jan 14, 2025
1 parent 8694fa0 commit 175cee1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 60 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Add Issue to Project Board
name: "Supp: move to Access Requests column"

on:
issues:
types:
types:
- opened
- labeled

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Move issue to Platform Onboarding project column
name: "Supp: move to Platform Onboarding column"

on:
issues:
types:
types:
- opened
- labeled

Expand All @@ -25,7 +25,7 @@ jobs:
contains(github.event.issue.labels.*.name, 'new-vfs-team')
steps:
- name: Move Issue to Access Requests Column
- name: Move Issue to Platform Onboarding Column
uses: m7kvqbe1/[email protected]
with:
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Add Issue to Project Board
name: "Supp: move to Support Tickets column"

on:
issues:
types:
types:
- opened
- labeled

Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
if: contains(github.event.issue.labels.*.name, 'Platform-Support-Ticket') # Skip job if the label doesn't exist
steps:
- name: Move Issue to Access Requests Column
- name: Move Issue to Support Tickets Column
uses: m7kvqbe1/[email protected]
with:
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand Down
49 changes: 0 additions & 49 deletions .github/workflows/assign-to-one-project.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Move issue to Offboarding project column
name: "Supp: move to Offboarding column"

on:
issues:
types:
types:
- opened
- labeled

Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
if: contains(github.event.issue.labels.*.name, 'Offboarding') # Skip job if the label doesn't exist
steps:
- name: Move Issue to Access Requests Column
- name: Move Issue to Offboarding Column
uses: m7kvqbe1/[email protected]
with:
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand Down

0 comments on commit 175cee1

Please sign in to comment.