Skip to content

Commit

Permalink
[Chore] Run CI checks on 'pull_request'
Browse files Browse the repository at this point in the history
Problem: We want to be able to run CI checks on PRs from external forks.
However, this is only possible with 'on: pull_request', while currently
CI is triggered 'on: push'

Solution: Change CI triggering condition to 'on: pull_request'.
  • Loading branch information
rvem committed Sep 18, 2023
1 parent 57d5071 commit 5617d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Nix flake check
on: push
on: pull_request

jobs:
check:
Expand Down

0 comments on commit 5617d39

Please sign in to comment.