We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d7b81 commit dec71deCopy full SHA for dec71de
.github/workflows/ci.yaml
@@ -92,26 +92,3 @@ jobs:
92
if: always()
93
run: |
94
docker compose logs
95
-
96
- test-annotations:
97
- needs: test
98
- timeout-minutes: 5
99
- runs-on: ubuntu-latest
100
- steps:
101
- - name: Check annotation
102
- uses: actions/github-script@v7
103
- with:
104
- script: |
105
- const annotations = await github.rest.checks.listAnnotations({
106
- owner: context.repo.owner,
107
- repo: context.repo.repo,
108
- check_run_id: ${{ needs.test.outputs.job_id }},
109
- });
110
- for (const annotation of annotations.data) {
111
- if (annotation.message.startsWith("MERGIFY_TEST_RUN_ID=")) {
112
- core.info(`Annotations found: ${annotation.message}`)
113
- return
114
- }
115
116
- console.log(annotations)
117
- throw new Error("Annotations not found")
0 commit comments