Skip to content

chore(gomod): bump github.com/hashicorp/terraform-plugin-framework-validators from 0.15.0 to 0.16.0 #47

chore(gomod): bump github.com/hashicorp/terraform-plugin-framework-validators from 0.15.0 to 0.16.0

chore(gomod): bump github.com/hashicorp/terraform-plugin-framework-validators from 0.15.0 to 0.16.0 #47

Workflow file for this run

name: Label Checker
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
- edited
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
fix_dependabot_labels:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
permissions:
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions-ecosystem/action-remove-labels@v1
with:
labels: |
major
minor
check_semver_labels:
name: Check Semver labels
if: github.base_ref == 'main'
runs-on: ubuntu-latest
permissions:
pull-requests: read
checks: write
steps:
- name: Check for Semver labels
uses: danielchabr/[email protected]
with:
hasSome: major,minor,patch
githubToken: ${{ secrets.GITHUB_TOKEN }}
check_cc_labels:
name: Check conventional commits labels
if: github.base_ref == 'main'
runs-on: ubuntu-latest
permissions:
pull-requests: read
checks: write
steps:
- uses: danielchabr/[email protected]
with:
hasSome: feature,enhancement,fix,bug,changed,deprecated,removed,security,docs,documentation,deps,dependencies,chore
githubToken: ${{ secrets.GITHUB_TOKEN }}
title-checker:
runs-on: ubuntu-latest
steps:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}