diff --git a/README.md b/README.md
index 2236449d..fe33c52f 100644
--- a/README.md
+++ b/README.md
@@ -159,7 +159,6 @@ Support this project with a :star:
| base\_sha | `string` | `false` | | Specify a different
base commit SHA
used for
comparing changes |
| path | `string` | `false` | `'.'` | Relative path under
`GITHUB_WORKSPACE`
to the repository |
| since\_last\_remote\_commit | `boolean` | `false` | `false` | Use the last commit on the remote
branch as the `base_sha`
(Defaults to the last commit
on the target branch for Pull requests
or the previous commit
on the current branch
for push events).
**NOTE:** This requires
`fetch-depth: 0`
with `actions/checkout@v3` |
-| use\_fork\_point | `boolean` | `false` | `false` | Finds best common ancestor
between two commits
to use in a three-way merge
as the `base_sha`
See: [git merge-base](https://git-scm.com/docs/git-merge-base#Documentation/git-merge-base.txt---fork-point).
**NOTE:** This pulls the entire commit history of the base branch |
| quotepath | `boolean` | `false` | `true` | Output filenames completely verbatim by setting this to `false` |
| diff\_relative | `boolean` | `false` | | Exclude changes outside the current directory and show pathnames relative to it. |
| dir\_names | `boolean` | `false` | `false` | Output unique changed directories instead of filenames.
**NOTE:** This returns `.` for
changed files located in the root of the project. |
@@ -295,13 +294,7 @@ Support this project with a :star:
uses: tj-actions/changed-files@v29
with:
since_last_remote_commit: "true"
-
- - name: Run changed-files using the fork point of a pull request
- id: changed-files-fork-point
- uses: tj-actions/changed-files@v29
- with:
- use_fork_point: "true"
-
+
- name: Run changed-files with quotepath disabled
id: changed-files-quotepath
uses: tj-actions/changed-files@v29.