diff --git a/.github/workflows/new_pull_request.yaml b/.github/workflows/new_pull_request.yaml deleted file mode 100644 index 5e3532bd15..0000000000 --- a/.github/workflows/new_pull_request.yaml +++ /dev/null @@ -1,16 +0,0 @@ -name: Add new pull requests to Backlog (External) - -on: - pull_request_target: - types: [opened, reopened] - -jobs: - automate-new-pull-requests: - if: ${{ !contains('allisonport-db dennyglee scottsand-db tdas vkorukanti zsxwing', github.event.sender.login) }} - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - project: oss-delta-prs - column: Needs Review - repo-token: ${{ secrets.PROJECT_BOARD_AUTOMATION_TOKEN }} diff --git a/.github/workflows/new_updated_issue.yaml b/.github/workflows/new_updated_issue.yaml deleted file mode 100644 index 9470c4e7b9..0000000000 --- a/.github/workflows/new_updated_issue.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Add new and updated issues to Needs Review - -env: - eng_usernames: allisonport-db scottsand-db tdas vkorukanti zsxwing - devrel_usernames: dennyglee MrPowers nkarpov vinijaiswal - -on: - issues: - types: [opened, reopened] - issue_comment: - types: [created] - -jobs: - automate-new-updated-issues: - if: ${{ !github.event.issue.pull_request && - !contains('allisonport-db scottsand-db tdas vkorukanti zsxwing dennyglee MrPowers nkarpov vinijaiswal', github.event.sender.login) }} - runs-on: ubuntu-latest - steps: - - name: Move to Needs Review (ENG) - if: ${{ github.event.issue.assignee != null && contains(env.eng_usernames, github.event.issue.assignee.login) }} - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - project: oss-delta-issues - column: Needs Review (ENG) - repo-token: ${{ secrets.PROJECT_BOARD_AUTOMATION_TOKEN }} - - name: Move to Needs Review - if: ${{ github.event.issue.assignee == null || contains(env.devrel_usernames, github.event.issue.assignee.login) }} - uses: alex-page/github-project-automation-plus@v0.8.1 - with: - project: oss-delta-issues - column: Needs Review - repo-token: ${{ secrets.PROJECT_BOARD_AUTOMATION_TOKEN }} diff --git a/.github/workflows/updated_pull_request.yaml b/.github/workflows/updated_pull_request.yaml deleted file mode 100644 index 035f022383..0000000000 --- a/.github/workflows/updated_pull_request.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: Move updated pull requests to Needs Review - -on: - issue_comment: - types: [created] - pull_request_target: - types: [synchronize] - pull_request_review_comment: - types: [created] - -jobs: - automate-updated-pull-requests: - if: ${{ (github.event.issue.pull_request || github.event.pull_request) && - !contains('allisonport-db scottsand-db tdas vkorukanti zsxwing dennyglee MrPowers nkarpov vinijaiswal', github.event.sender.login) && - (github.event.pull_request.state == 'open' || github.event.issue.state == 'open') }} - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@2af3cf061aeca8ac6ab40a960eee1968a7f9ce0e # TODO: update to use a version after fixes are merged & released - with: - project: oss-delta-prs - column: Needs Review - repo-token: ${{ secrets.PROJECT_BOARD_AUTOMATION_TOKEN }}