Skip to content

Commit 1cd59ff

Browse files
authored
Allow run workflow for the push and issues events.
1 parent 62e2b2c commit 1cd59ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/repo-automator.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
Validate:
2121
runs-on: ubuntu-latest
22-
if: ${{ github.event_name == 'pull_request' && ! github.event.pull_request.head.repo.fork }}
22+
if: "${{ github.event_name == 'push' || github.event_name == 'issues' || ( github.event_name == 'pull_request' && ! github.event.pull_request.head.repo.fork ) }}"
2323

2424
steps:
2525
- uses: 10up/action-repo-automator@trunk

0 commit comments

Comments
 (0)