Skip to content

Commit

Permalink
fix(ci): run on pull request (#681)
Browse files Browse the repository at this point in the history
Approval for running fork pull request feature will only work when
the workflow is triggered via `pull_request`, see also
- https://github.com/orgs/community/discussions/119459#discussioncomment-9180402

Therefore, add this as an additional triggers to the CI workflow.
And change this repository setting

Fixes:
- #378
  • Loading branch information
beiertu-mms authored Feb 25, 2025
1 parent 0c15597 commit ebeb86b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
name: Application build and test
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
types:
- opened
- reopened
- synchronize

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand Down

0 comments on commit ebeb86b

Please sign in to comment.