Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
20567b5
Introduce parameter object for API params that travel together
sampart Nov 23, 2020
7eb9dfc
Add a function that can lint a CodeQL action workflow
Nov 23, 2020
33bb875
Write a warning if there is an error with the workflow
Nov 24, 2020
c0bd7b0
Handle relative workflow paths
Nov 24, 2020
754f502
Workflow triggers are null if unspecified
Nov 24, 2020
6df1fc5
Do not fail if the workflow has been deleted
Nov 24, 2020
ab9b1a7
Fix tests
sampart Nov 24, 2020
3ee4739
Make anonymous objects into variables for readability
sampart Nov 24, 2020
27520b9
Merge pull request #318 from github/api-param-object
sampart Nov 24, 2020
2ac22e8
Send short codes that do not need URL encoding for better splunk tracing
Nov 24, 2020
fd16298
Revert an accidental change to make testing quicker
Nov 24, 2020
1020df5
Merge branch 'main' into simon-engledew/lint-workspace
Nov 24, 2020
92ffb08
Tidy up ready for review
Nov 24, 2020
cb3b3a8
Comment the lint cases to make maintaining easier
Nov 25, 2020
c06dcf8
Update source
Nov 25, 2020
8d468d6
Improve linting hints
Nov 25, 2020
582f792
Fix deprecated method Buffer.new
Nov 25, 2020
85aefe5
Signpost the latest documentation in the warning
Nov 25, 2020
94b10db
See if markdown is supported
Nov 25, 2020
c5f58f3
Markdown is not supported - roll back and fix typo
Nov 25, 2020
253d46a
Better copy for PathsSpecified, suggested by @sampart
Nov 25, 2020
eed3141
Add paths-ignore case
Nov 25, 2020
378f1f9
Merge pull request #320 from github/simon-engledew/fix-DEP0005-buffer
Nov 25, 2020
35fd0a9
Update ESLint configuration
ericcornelissen Nov 25, 2020
cd72793
Update source so github/no-then passes
ericcornelissen Nov 25, 2020
e6ea8cb
Run npm run build
ericcornelissen Nov 25, 2020
7d74882
Merge pull request #321 from ericcornelissen/eslint/github-no-then
robertbrignull Nov 26, 2020
be09fb3
Implement feedback
Nov 26, 2020
92df387
Merge branch 'main' into simon-engledew/lint-workspace
Nov 26, 2020
8d18e34
Merge pull request #319 from github/simon-engledew/lint-workspace
Nov 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@
"@typescript-eslint/prefer-regexp-exec": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"func-style": "off",
"github/no-then": "off"
"func-style": "off"
}
}]
}
155 changes: 155 additions & 0 deletions lib/actions-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/actions-util.js.map

Large diffs are not rendered by default.

115 changes: 115 additions & 0 deletions lib/actions-util.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading