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
| token | GITHUB_TOKEN to access the GitHub API if the repository is private | `true` | |
42
42
| default_branch | Default branch to compare the "Unreleased" section of the CHANGELOG to. | `false` | ${{ github.event.repository.default_branch }} |
43
+
| checkout_path | This action checks out the repository for the current SHA as well as from the default branch. This path indicates where to checkout the repositories as to not clash with any other work in the workflow. | `false` | temp/require-changelog-entry |
43
44
| tag_prefix | Optional prefix string to apply to tag search | `false` | |
44
45
| tag_suffix | Optional suffix string to apply to tag search | `false` | |
45
46
| changelog_path | Path to CHANGELOG file within repository | `false` | CHANGELOG.md |
description: This action checks out the repository for the current SHA as well as from the default branch. This path indicates where to checkout the repositories as to not clash with any other work in the workflow.
16
+
default: temp/require-changelog-entry
17
+
required: false
18
+
14
19
tag_prefix:
15
20
description: Optional prefix string to apply to tag search
16
21
required: false
@@ -89,14 +94,14 @@ runs:
89
94
uses: actions/checkout@v3
90
95
with:
91
96
token: ${{ inputs.token }}
92
-
path: ${{ github.action_path }}/current
97
+
path: ${{ inputs.checkout_path }}/current
93
98
94
99
- name: Checkout Repository at default branch
95
100
uses: actions/checkout@v3
96
101
with:
97
102
token: ${{ inputs.token }}
98
103
ref: ${{ inputs.default_branch }}
99
-
path: ${{ github.action_path }}/default
104
+
path: ${{ inputs.checkout_path }}/default
100
105
101
106
###### Retrieve latest and Unreleased entries from CHANGELOGs ######
0 commit comments