[Feature Request] Don't commit empty transactions to the log for Writes #3460
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
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/[email protected] | |
with: | |
project: oss-delta-issues | |
column: Needs Review | |
repo-token: ${{ secrets.PROJECT_BOARD_AUTOMATION_TOKEN }} |