Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
iancha1992 committed Aug 30, 2023
1 parent a090229 commit cb3a1f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cherry-picker-on-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ env:
jobs:
cherry-picker-on-closed-pr:
# if: github.event.sender.login == 'copybara-service[bot]'
if: contains(github.event, "pull-request")
# if: contains(github.event, "pull_request")
if: "pull_request" in github.event
runs-on: ubuntu-latest
steps:
- name: Logging github event
Expand All @@ -26,7 +27,8 @@ jobs:

cherry-picker-on-closed-issue:
# if: github.event.sender.login == 'copybara-service[bot]'
if: contains(github.event, "issue")
# if: contains(github.event, "issue")
if: "pull_request" in github.event
runs-on: ubuntu-latest
steps:
- name: Logging github event
Expand Down

0 comments on commit cb3a1f5

Please sign in to comment.