Skip to content

Commit

Permalink
Merge pull request #2 from Fresa/create-action
Browse files Browse the repository at this point in the history
Create action
  • Loading branch information
Fresa authored Mar 29, 2021
2 parents 4ef6f95 + fa1becd commit 9fb35af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
is_prerelease=false || \
is_prerelease=true
[[ is_prerelease ]] && \
[[ $is_prerelease == true ]] && \
tag=v${{ steps.gitversion.outputs.majorMinorPatch }}-pre-${{ steps.gitversion.outputs.shortSha }} || \
tag=v${{ steps.gitversion.outputs.majorMinorPatch }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
# Fetches entire history, so we can analyze commits since last tag
# Fetches entire history, so we can analyze commits
fetch-depth: 0
- name: Generate release notes
id: release_notes
Expand All @@ -32,14 +32,14 @@ jobs:
- **github_token** _(required)_ - The Github token used to query this repository.(default: `${{ github.token }}`)
- **version** _(required)_ - The version of the release.
Example: 2.4.0
- **from_tag_exclusive** _(required)_ - The tag where to start gather commits. The tagged commit is not included.
- **from_ref_exclusive** _(required)_ - The reference where to start gather commits. The referenced commit is not included.
Examples:
- tags/v1.0.1
- v1.0.1
- heads/my-branch
- my-branch
- 431880b
- **to_tag_inclusive** _(required)_ - The tag where to stop gather commits. The tagged commit is included.
- **to_ref_inclusive** _(required)_ - The reference where to stop gather commits. The referenced commit is included.
Examples:
- tags/v2.0.0
- v2.0.0
Expand Down

0 comments on commit 9fb35af

Please sign in to comment.