build(deps): Bump mamba-org/setup-micromamba from 587376182cdfd0bbb62c54adc93431c9e201de52 to a1ad40c22e5377cab6624ae0863a34f7d3e78671 #131
Workflow file for this run
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: Chore | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, reopened, edited, synchronize] | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-pr-title: | |
name: PR title validation | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: validate conventional commit message | |
id: lint | |
uses: amannn/action-semantic-pull-request@v5 | |
with: | |
subjectPattern: ^[A-Z].+[^. ]$ # subject must start with uppercase letter and may not end with a dot/space | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: post comment about invalid PR title | |
if: failure() | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: conventional-commit-pr-title | |
message: | | |
Thanks for contributing to ParmaAI! 👋🏼 | |
Please use PR titles according to [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted. | |
<details><summary><b>Details</b></summary> | |
``` | |
${{ steps.lint.outputs.error_message }} | |
``` | |
</details> | |
- name: delete comment about invalid PR title | |
if: success() | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: conventional-commit-pr-title | |
delete: true | |
release-drafter: | |
name: ${{ github.event_name == 'pull_request' && 'Assign Labels' || 'Draft Release' }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: ${{ github.event_name == 'pull_request' && 'Assign labels' || 'Update release draft' }} | |
uses: release-drafter/release-drafter@v5 | |
with: | |
disable-releaser: ${{ github.event_name == 'pull_request' }} | |
disable-autolabeler: ${{ github.event_name == 'push' }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |