You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,8 @@ Make sure to check out [#migrating](#migrating) to learn more.
25
25
|`access_token`| Yes || A Github Access Token with repository access (required for setting status on commits). N.B. If you want github-pr-resource to work with a private repository. Set `repo:full` permissions on the access token you create on GitHub. If it is a public repository, `repo:status` is enough. |
26
26
|`v3_endpoint`| No |`https://api.github.com`| Endpoint to use for the V3 Github API (Restful). |
27
27
|`v4_endpoint`| No |`https://api.github.com/graphql`| Endpoint to use for the V4 Github API (Graphql). |
28
-
|`paths`| No |`terraform/*/*.tf`| Only produce new versions if the PR includes changes to files that match one or more glob patterns or prefixes. |
29
-
|`ignore_paths`| No |`.ci/`| Inverse of the above. Pattern syntax is documented in [filepath.Match](https://golang.org/pkg/path/filepath/#Match), or a path prefix can be specified (e.g. `.ci/` will match everything in the `.ci` directory). |
28
+
|`paths`| No |`["terraform/*/*.tf"]`| Only produce new versions if the PR includes changes to files that match one or more glob patterns or prefixes. |
29
+
|`ignore_paths`| No |`[".ci/"]`| Inverse of the above. Pattern syntax is documented in [filepath.Match](https://golang.org/pkg/path/filepath/#Match), or a path prefix can be specified (e.g. `.ci/` will match everything in the `.ci` directory). |
30
30
|`disable_ci_skip`| No |`true`| Disable ability to skip builds with `[ci skip]` and `[skip ci]` in commit message or pull request title. |
31
31
|`skip_ssl_verification`| No |`true`| Disable SSL/TLS certificate validation on git and API clients. Use with care! |
32
32
|`disable_forks`| No |`true`| Disable triggering of the resource if the pull request's fork repository is different to the configured repository. |
@@ -80,7 +80,7 @@ requested version and the metadata emitted by `get` are available to your tasks
80
80
-`.git/resource/changed_files` (if enabled by `list_changed_files`)
81
81
82
82
The information in `metadata.json` is also available as individual files in the `.git/resource` directory, e.g. the `base_sha`
83
-
is available as `.git/resource/base_sha`. For a complete list of available (individual) metadata files, please check the code
83
+
is available as `.git/resource/base_sha`. For a complete list of available (individual) metadata files, please check the code
0 commit comments