We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13565fc commit 4168e64Copy full SHA for 4168e64
.github/workflows/test-wrong-status.yml
@@ -74,8 +74,14 @@ jobs:
74
75
teardown:
76
runs-on: ubuntu-latest
77
- needs: [assert]
+ needs: [assert, setup]
78
if: ${{ always() }}
79
steps:
80
- - name: Tear down
81
- run: echo "Do Tear down"
+ - name: Set status
+ uses: myrotvorets/set-commit-status-action@master
82
+ with:
83
+ repo: ${{ github.repository }}
84
+ sha: ${{ github.sha }}
85
+ token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
86
+ status: success
87
+ context: continuous-delivery/${{ needs.setup.outputs.environment }}.test-app
0 commit comments