You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The android-ci-comment.yml workflow, which is supposed to run after android.yml completes using the workflow_run event, is not triggering as expected. The goal is to build APKs in android.yml (on pull_request) and then comment on the PR with APK download links in android-ci-comment.yml (on workflow_run). However, after android.yml runs, android-ci-comment.yml does not execute, even though it’s configured to trigger on successful completion of Android CI.
Current Behavior
android.yml runs on pull_request and uploads betaDebugAPK, prodDebugAPK, and run-id artifacts.
android-ci-comment.yml (using on: workflow_run) does not run afterward, despite being present in the repository.
Expected Behavior
android.yml completes successfully on pull_request.
android-ci-comment.yml triggers via workflow_run and posts a comment with APK download links on the PR.
Relevant Files
.github/workflows/android.yml: Builds APKs and uploads artifacts.
.github/workflows/android-ci-comment.yml: Comments on PR using workflow_run.
The text was updated successfully, but these errors were encountered:
Description
The
android-ci-comment.yml
workflow, which is supposed to run afterandroid.yml
completes using theworkflow_run
event, is not triggering as expected. The goal is to build APKs inandroid.yml
(onpull_request
) and then comment on the PR with APK download links inandroid-ci-comment.yml
(onworkflow_run
). However, afterandroid.yml
runs,android-ci-comment.yml
does not execute, even though it’s configured to trigger on successful completion ofAndroid CI
.Current Behavior
android.yml
runs onpull_request
and uploadsbetaDebugAPK
,prodDebugAPK
, andrun-id
artifacts.android-ci-comment.yml
(usingon: workflow_run
) does not run afterward, despite being present in the repository.Expected Behavior
android.yml
completes successfully onpull_request
.android-ci-comment.yml
triggers viaworkflow_run
and posts a comment with APK download links on the PR.Relevant Files
.github/workflows/android.yml
: Builds APKs and uploads artifacts..github/workflows/android-ci-comment.yml
: Comments on PR usingworkflow_run
.The text was updated successfully, but these errors were encountered: