ci: Fix versioning in package deployment (v3) #724
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull request | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
permissions: | |
pull-requests: write | |
jobs: | |
main: | |
name: lint PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
id: lint_pr_title | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# Configure additional validation for the subject based on a regex. | |
# We enforce that the subject starts with an uppercase character. | |
subjectPattern: ^([A-Z]).+$ | |
# If `subjectPattern` is configured, you can use this property to override | |
# the default error message that is shown when the pattern doesn't match. | |
# The variables `subject` and `title` can be used within the message. | |
subjectPatternError: > | |
The subject "**{subject}**" in pull request "*{title}*" | |
needs to start with an uppercase character. | |
# If the PR contains one of these newline-delimited labels, the | |
# validation is skipped. If you want to rerun the validation when | |
# labels change, you might want to use the `labeled` and `unlabeled` | |
# event triggers in your workflow. | |
ignoreLabels: | | |
bot | |
dependencies | |
- uses: marocchino/sticky-pull-request-comment@v2 | |
# When the previous steps fails, the workflow would stop. By adding this | |
# condition you can continue the execution with the populated error message. | |
if: always() && (steps.lint_pr_title.outputs.error_message != null) | |
with: | |
header: pr-title-lint-error | |
message: | | |
### ⚠️ Pull Request title needs adjustment | |
Your PR title doesn't match our naming convention: `type: Subject` | |
> [!CAUTION] | |
> ${{ steps.lint_pr_title.outputs.error_message }} | |
#### Valid examples | |
- `feat: Add new RSI indicator` | |
- `fix: Correct MACD calculation` | |
- `chore: Update documentation` | |
- `test: Add unit tests for EMA` | |
- `refactor: Optimize moving average logic` | |
See the [Conventional Commits specification](https://www.conventionalcommits.org) for more information. | |
# Delete a previous comment when the issue has been resolved | |
- if: ${{ steps.lint_pr_title.outputs.error_message == null }} | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: pr-title-lint-error | |
delete: true |