-
Notifications
You must be signed in to change notification settings - Fork 1.4k
chore: add unit tests on ci for Windows #7539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: build/v2
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 8f4449f The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
353df24
to
942bdc5
Compare
942bdc5
to
8f4449f
Compare
.github/workflows/cancel.yml
Outdated
runs-on: ubuntu-latest | ||
steps: | ||
- uses: styfle/[email protected] | ||
if: github.event_name == 'pull_request' | ||
with: | ||
workflow_id: ${{ github.event.workflow.id }} |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 24 days ago
To fix the issue, we need to add a permissions
block to the workflow. This block should specify the least privileges required for the workflow to function correctly. Based on the workflow's purpose (canceling workflow runs), it likely only needs read access to repository contents and workflows. We will add the permissions
block at the root level of the workflow to apply it to all jobs.
-
Copy modified lines R3-R5
@@ -2,2 +2,5 @@ | ||
name: Cancel | ||
permissions: | ||
contents: read | ||
workflows: read | ||
on: |
No description provided.