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/release-action@main
with:
key: ${{ github.event.inputs.key }}
token: ${{ secrets.RELEASE_TOKEN }}