This action output JIRA issue key and prerelease tag based on Pull Request branch.
Input |
Required |
Default |
Description |
branch |
✅ |
|
Branch name, must contain JIRA issue key |
push |
✅ |
true |
Push tags if true |
Output |
Description |
key |
JIRA issue key |
tag |
Prerelease tag |
uses: sepulsa/post-integration-action/prerelease@main
with:
branch: ${{ github.head_ref }}
This action output release tag based on JIRA Issue key.
Input |
Required |
Description |
key |
✅ |
JIRA issue key |
token |
✅ |
Github Personal Access Token with permission to delete environment |
Output |
Description |
tag |
Release tag |
- uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.key }}
fetch-depth: 0
- uses: sepulsa/post-integration-action/release@main
with:
key: ${{ github.event.inputs.key }}
token: ${{ secrets.RELEASE_TOKEN }}