ci: bump docker/build-push-action from 4 to 5 #144
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: Pull Request | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, reopened, edited, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
check-title: | |
name: Check Title | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check valid conventional commit message | |
id: lint | |
uses: amannn/action-semantic-pull-request@v5 | |
with: | |
subjectPattern: ^(?![A-Z]).+$ # subject should not start with uppercase letter | |
scopes: | | |
go | |
helm | |
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: | | |
Thank you for opening this pull request! 👋🏼 | |
This repository requires pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted. | |
<details><summary>**Details**</summary> | |
``` | |
${{ steps.lint.outputs.error_message }} | |
``` | |
</details> | |
- name: Delete comment about invalid PR title | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: conventional-commit-pr-title | |
delete: true | |
assign-labels: | |
name: Assign Labels | |
runs-on: ubuntu-latest | |
steps: | |
- name: Assign labels based on conventional commits | |
uses: release-drafter/release-drafter@v5 | |
with: | |
disable-releaser: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |