mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
ci: always set conclusion for alteration tests (#6276)
This commit is contained in:
parent
17d7be3992
commit
97b0be48d5
1 changed files with 8 additions and 0 deletions
|
@ -91,3 +91,11 @@ jobs:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
GH_DEBUG: api
|
GH_DEBUG: api
|
||||||
run: gh workflow run rerun.yml -F run_id=${{ github.run_id }}
|
run: gh workflow run rerun.yml -F run_id=${{ github.run_id }}
|
||||||
|
|
||||||
|
alteration-compatibility-conclusion:
|
||||||
|
needs: run-logto
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: always() && (needs.run-logto.result == 'success' || needs.run-logto.result == 'skipped')
|
||||||
|
steps:
|
||||||
|
- name: Conclusion
|
||||||
|
run: echo "Alteration compatibility integration test completed successfully"
|
||||||
|
|
Loading…
Reference in a new issue