Skip to content

Commit

Permalink
bug solved: github.event_name should be 'pull_request_target' instead…
Browse files Browse the repository at this point in the history
… of 'pull_request'
  • Loading branch information
yufei118liu committed Jun 20, 2024
1 parent 767086e commit 6ca4fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/link-to-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
add-review-checklist:
# if : ${{ github.event_name == 'pull_request' && github.event.action == 'opened' && startsWith(github.event.pull_request.title, 'ingestion') == true}}
if : ${{ github.event_name == 'pull_request_target' && github.event.action == 'opened' && startsWith(github.event.pull_request.title, 'ingestion') == true}}
runs-on: ubuntu-latest
steps:
- name: Check out repository
Expand Down

0 comments on commit 6ca4fdf

Please sign in to comment.