Whenever a pull request is submitted by a GH workflow, e.g. by update-deps, another GH workflow that would normally be triggered on pull_request event will not be triggered. For example, a PR submitted by update-deps workflow in ckeditor4-react repo will not trigger test_all workflow in that repo.
This behavior is by design for workflows that use GITHUB_TOKEN and it's described here. Possible workarounds:
use personal token
manually push any commit to a PR
workflow_dispatch could be used to trigger test suite for a given commit SHA? Still a manual action but saves us from polluting repos with useless commits
Whenever a pull request is submitted by a GH workflow, e.g. by
update-deps
, another GH workflow that would normally be triggered onpull_request
event will not be triggered. For example, a PR submitted byupdate-deps
workflow inckeditor4-react
repo will not triggertest_all
workflow in that repo.This behavior is by design for workflows that use
GITHUB_TOKEN
and it's described here. Possible workarounds:workflow_dispatch
could be used to trigger test suite for a given commit SHA? Still a manual action but saves us from polluting repos with useless commitsLet's discuss a viable approach.