Skip to content

Commit

Permalink
Allow CI jobs for pull requests (#287)
Browse files Browse the repository at this point in the history
Before this fix, verify and secure CI jobs was start only on push to the repository and did not work in forks.
  • Loading branch information
milkrage authored Jul 30, 2024
1 parent 06c070b commit 0eb19db
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/secure.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Secure

on: push
on:
push:
branches:
- master
pull_request:

jobs:
# Sample GitHub Actions:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Verify

on: push
on:
push:
branches:
- master
pull_request:

jobs:
tests:
Expand Down

0 comments on commit 0eb19db

Please sign in to comment.