Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b7a9db5
brand: GitHub
jsoref Jul 8, 2021
a0e43af
Split yaml sections
jsoref Jul 8, 2021
74cfa79
Markdown fixes
jsoref Jul 8, 2021
1ec7035
Merge pull request #95 from jsoref/misc
dorny Jul 8, 2021
816eb04
Run audit fix with --force
JJ Feb 1, 2022
b55f63c
Fix resulting dep errors :bug:
JJ Feb 1, 2022
6b40481
:coffin: rules no longer used
JJ Feb 1, 2022
38e0a04
:arrow_up: in a number of deps
JJ Feb 1, 2022
bdd8d7a
:sparkles: Generates code with new ncc
JJ Feb 1, 2022
17e486d
Update eslint package
dorny Jun 9, 2022
8c7f485
Merge pull request #121 from JJ/master
dorny Jun 9, 2022
ff17951
Set `list-files` input parameter as not required
tlinhart Sep 29, 2022
a458940
Updates real world links
austinpray-mixpanel Oct 7, 2022
375cc8a
Update Node.js
massongit Oct 10, 2022
e7dd821
Merge pull request #160 from austinpray-mixpanel/patch-1
dorny Oct 11, 2022
c232e22
Merge pull request #161 from massongit/patch-1
dorny Oct 11, 2022
829abbf
Merge pull request #157 from tlinhart/patch-1
dorny Oct 11, 2022
ce8f47a
Fix incorrect handling of Unicode characters in exec()
dorny Oct 11, 2022
b0e6c31
Merge pull request #162 from dorny/fix-exec-unicode-handling
dorny Oct 11, 2022
248cda5
Use Octokit pagination
dorny Oct 11, 2022
0ef5f0d
Merge pull request #163 from dorny/use-octokit-pagination
dorny Oct 11, 2022
737cb19
Update dist/index.js and CHANGELOG for v2.11.0
dorny Oct 11, 2022
e0f036e
updating to actions/checkout@v3 in order to avoid the set-output depr…
IdanYaffe Oct 12, 2022
027a82c
Merge pull request #164 from IdanYaffe/idanyaffe-master
dorny Oct 12, 2022
513ea69
Update @actions/core to v1.10.0
dorny Oct 12, 2022
baa26e3
Merge pull request #167 from dorny/update-actions-core-package
dorny Oct 12, 2022
9e7258b
Specify job permissions in the pull request workflow
dorny Oct 12, 2022
c763b52
Document need for pull-requests: read permission
dorny Oct 12, 2022
ffe0943
Modify ts file to trigger CI
dorny Oct 12, 2022
e12ca0e
Revert "Modify ts file to trigger CI"
dorny Oct 12, 2022
5f5fe18
Merge pull request #168 from dorny/job-permissions
dorny Oct 12, 2022
4512585
Update dist/index.js and CHANGELOG for v2.11.1
dorny Oct 12, 2022
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
7 changes: 1 addition & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"plugins": ["jest", "@typescript-eslint"],
"extends": ["plugin:github/es6"],
"extends": ["plugin:github/internal"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
Expand All @@ -16,13 +16,10 @@
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-ts-ignore": "error",
"camelcase": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/class-name-casing": "error",
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
"@typescript-eslint/func-call-spacing": ["error", "never"],
"@typescript-eslint/generic-type-naming": ["error", "^[A-Z][A-Za-z]*$"],
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": "off",
Expand All @@ -32,15 +29,13 @@
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-object-literal-type-assertion": "error",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/prefer-for-of": "warn",
"@typescript-eslint/prefer-function-type": "warn",
"@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-interface": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/promise-function-async": ["error", { "allowAny": true }],
"@typescript-eslint/require-array-sort-compare": "error",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
npm install
npm run all

self-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
id: filter
with:
Expand Down
18 changes: 11 additions & 7 deletions .github/workflows/pull-request-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
npm install
npm run all

test-inline:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
id: filter
with:
Expand All @@ -36,8 +38,10 @@ jobs:

test-external:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
id: filter
with:
Expand All @@ -49,7 +53,7 @@ jobs:
test-without-token:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
id: filter
with:
Expand All @@ -62,7 +66,7 @@ jobs:
test-wd-without-token:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: somewhere
- uses: ./somewhere
Expand All @@ -78,7 +82,7 @@ jobs:
test-local-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: echo "NEW FILE" > local
- run: git add local
- uses: ./
Expand All @@ -98,7 +102,7 @@ jobs:
test-change-type:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: configure GIT user
run: git config user.email "john@nowhere.local" && git config user.name "John Doe"
- name: modify working tree
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## v2.11.1
- [Update @actions/core to v1.10.0 - Fixes warning about deprecated set-output](https://github.com/dorny/paths-filter/pull/167)
- [Document need for pull-requests: read permission](https://github.com/dorny/paths-filter/pull/168)
- [Updating to actions/checkout@v3](https://github.com/dorny/paths-filter/pull/164)

## v2.11.0
- [Set list-files input parameter as not required](https://github.com/dorny/paths-filter/pull/157)
- [Update Node.js](https://github.com/dorny/paths-filter/pull/161)
- [Fix incorrect handling of Unicode characters in exec()](https://github.com/dorny/paths-filter/pull/162)
- [Use Octokit pagination](https://github.com/dorny/paths-filter/pull/163)
- [Updates real world links](https://github.com/dorny/paths-filter/pull/160)

## v2.10.2
- [Fix getLocalRef() returns wrong ref](https://github.com/dorny/paths-filter/pull/91)

Expand Down
Loading