Skip to content

Commit

Permalink
ci: run build workflow on external pull requests
Browse files Browse the repository at this point in the history
Currently we don't run the build workflow on external pull requests.
This makes it tricky to detect build and style issues on these requests.

As we already require explicit approval for all external contributors
before running the action, it is fine to also enable the workflow.
Further, I carefully checked the configuration of the repo with the
poutine tool for possible bypasses.

Signed-off-by: Felix Moessbauer <[email protected]>
  • Loading branch information
fmoessbauer committed Nov 18, 2024
1 parent 2ed48b9 commit 88483d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ name: build browser extension

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to checkout the repository
Expand Down

0 comments on commit 88483d3

Please sign in to comment.