chore(deps): update golang docker tag to v1.24.3 #22
Workflow file for this run
This file contains hidden or 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: GlueOps Standard Checks | |
on: | |
workflow_call: | |
pull_request: | |
jobs: | |
PR_CHECKS_AND_LABELS: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Validate Conventional Commit Messages | |
uses: webiny/action-conventional-commits@8bc41ff4e7d423d56fa4905f6ff79209a78776c7 # v1.3.0 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Optional, for private repositories. | |
allowed-commit-types: "fix,docs,style,refactor,test,chore,pref,ci,chore,feat,breaking,major,revert" | |
- name: Add default PR Labels | |
uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5 | |
with: | |
configuration-path: ".github/configs/labeler.yml" | |
- name: Assign PR Labels based on conventional commit messages | |
id: action-assign-labels | |
uses: mauroalderete/action-assign-labels@671a4ca2da0f900464c58b8b5540a1e07133e915 # v1 | |
with: | |
pull-request-number: ${{ github.event.pull_request.number }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
conventional-commits: | | |
conventional-commits: | |
- type: 'fix' | |
nouns: ['fix', 'docs', 'style', 'refactor', 'test', 'chore', 'pref', 'ci', 'chore'] | |
labels: ['patch'] | |
- type: 'feature' | |
nouns: ['feat'] | |
labels: ['minor','enhancement'] | |
- type: 'breaking_change' | |
nouns: ['breaking', 'major'] | |
labels: ['major'] | |
maintain-labels-not-matched: false | |
apply-changes: true |