Skip to content

Commit 5b78ead

Browse files
committed
Skip access check on scheduled actions
1 parent fbd313e commit 5b78ead

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
with:
1717
github-token: ${{secrets.GITHUB_TOKEN}}
1818
script: |
19+
if (context.eventName === 'schedule') {
20+
return
21+
}
22+
1923
const issue_number = context.issue.number;
2024
const repository = context.repo.repo;
2125
const owner = context.repo.owner;

0 commit comments

Comments
 (0)