mirror of
https://github.com/beetbox/beets.git
synced 2025-12-23 00:54:03 +01:00
Revert "ci: Replace pull_request with pull_request_target"
This was a very bad idea since this made CI operate within the context of the *base* branch, which meant that the tests were testing code in the `master` branch instead of the branch that was to be merged!
This commit is contained in:
parent
69dbfd9868
commit
6180ce1973
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
name: Test
|
name: Test
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
|
|
||||||
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
name: Lint check
|
name: Lint check
|
||||||
run-name: Lint code
|
run-name: Lint code
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue