diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-10-09 16:20:07 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2023-10-09 16:20:07 +0200 |
commit | 8700665099c7d502c43af9e3abe55ba181495145 (patch) | |
tree | 4ffbf4190f7a6fdef065e64e4268adf9434205ce /.github | |
parent | 7c209d736907e18ec8d79a57328c1e3bad7b2786 (diff) |
ci: don't skip pull request workflows for `master` branch
We want pull request workflows to run, even if the source branch happens
to be `master` from a forked repository.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/openwrt-ci-pull-request.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/openwrt-ci-pull-request.yml b/.github/workflows/openwrt-ci-pull-request.yml index 7a75d95..9ae8907 100644 --- a/.github/workflows/openwrt-ci-pull-request.yml +++ b/.github/workflows/openwrt-ci-pull-request.yml @@ -1,11 +1,8 @@ name: OpenWrt CI pull request testing on: - push: - branches-ignore: - - master pull_request: - types: [opened, reopened] + types: [opened, reopened, edited] env: CI_ENABLE_UNIT_TESTING: 1 |