We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d956e commit 82d67b3Copy full SHA for 82d67b3
.github/workflows/web-starter-playwright.yml
@@ -83,3 +83,16 @@ jobs:
83
working-directory: web-starter/web/nextjs
84
run: |
85
yarn test:e2e
86
+
87
+ - name: Create issue on failure (nightly)
88
+ if: failure() && github.event_name == 'schedule'
89
+ uses: actions/github-script@v6
90
+ with:
91
+ script: |
92
+ github.issues.create({
93
+ owner: context.repo.owner,
94
+ repo: context.repo.repo,
95
+ title: '[Nightly] Web-starter Playwright workflow failed',
96
+ body: `The nightly Web-starter Playwright workflow failed. Please investigate.\n\n/cc @noir-lang/developerrelations`,
97
+ labels: ['nightly', 'bug']
98
+ })
0 commit comments