[TIL] GitHub Actions: how to get execution status of a specific job
https://ramigs.dev/blog/github-actions-how-to-get-status-execution-of-a-specific-job/
Mar 09, 2022 · [TIL] GitHub Actions: how to get execution status of a specific job. March 9, 2022. TIL that in GitHub Actions, one can use needs.job.result to get the execution status of a specific job. Let's say you have a job named invalidate-cache. You can then, in another job, check its execution status, like so: if: needs.invalidate-cache.result == 'success'
DA: 52 PA: 2 MOZ Rank: 17