-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only seeing "in progress" when running within a matrix #33
Comments
Hey i have the same issue |
Hey guys, I will look into this. |
Have the same issue. |
Same here. The completion status is always IN-PROGRESS |
Same here. Any update on this since December? |
I am using a work around for this issue, might be useful for someone else. notification-job:
runs-on: ubuntu-latest
needs: [job-with-matrix]
if: "always() && !contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout branch code
uses: actions/checkout@v2
- uses: toko-bifrost/ms-teams-deploy-card@master
if: always()
with:
card-layout-exit: complete
show-on-start: false
- name: Build matrix failed
if: ${{ needs.job-with-matrix.result != 'success' }}
run: exit 1
- name: Build matrix succeeded
if: ${{ needs.job-with-matrix.result == 'success' }}
run: echo "Targets built and deployed" The notification won't have the actual error, but it will at least have the right status for the whole workflow. |
Same here. Any update on the status here? Thanks. |
In my findings, the same behaviour happens even when we are not running it in matrix. |
Recently I opened a PR to solve this issue. Take a look |
I was seeing this issue as well and just confirmed your PR did solve it @patrickpaulin, would be nice to get it merged if/when possible. Good job with the fix 👍 |
Tks, @michal-sa! it looks like this repo was "abandoned". Feel free to use my fork, for while:
|
Ditto on this issue with the notification always being "in-progress", even when not using -name for the teams step. Thanks for the fork @patrickpaulin |
@patrickpaulin Thank you so much! |
Hi there,
I am trying to run this action within a workflow that relies on matracies:
but regardless of how the run is going, we are only seeing "In Progress". I made sure to not have job names in place, so I know the known issue #5 is not impacting this, but the next culprit seems to be running within a matrix. Not sure if there was any insight on this but I wanted to report it for visibility if nothing else.
The text was updated successfully, but these errors were encountered: