-
Notifications
You must be signed in to change notification settings - Fork 110
Delete .github/workflows/triage.yml #308
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
Changes from all commits
2129334
86f505a
fde9ae1
3b69edf
5138cd5
42596d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@v3 | ||
| with: | ||
| languages: 'csharp' | ||
|
Comment on lines
+1
to
+4
|
||
This file was deleted.
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.
This file appears to be an incomplete GitHub Actions workflow. It only contains a single step definition without the required workflow structure. A valid GitHub Actions workflow needs:
namefield at the top levelon:field)jobssection containing one or more jobsruns-onfield and astepssectionCurrently, this file only has step content (lines 1-4), which will cause the workflow to fail. This should either be a complete workflow file or be removed if it's meant to be integrated elsewhere.