Trigger CI on default pull-request activity types. (#549)

This PR changes the CI trigger for pull requests to use the default activity types which – the Internet claims – is “open,” “synchronize,” and “reopen.”
This commit is contained in:
Martin Hoffmann
2025-06-27 15:18:46 +02:00
committed by GitHub
parent 3165d146d3
commit a35f0fc733
+3 -4
View File
@@ -12,11 +12,10 @@ name: CI
# When the worflow runs
# ---------------------
on:
# Execute when a pull request's head changes (e.g. new commits are added or
# the commit history is rewritten) ... but only if build-related files
# change.
# Execute when a pull request is (re-) opened or its head changes (e.g. new
# commits are added or the commit history is rewritten) ... but only if
# build-related files change.
pull_request:
types: [synchronize]
paths:
- '**.rs'
- 'Cargo.{toml,lock}'