chore(gomod): bump golang.org/x/crypto from 0.29.0 to 0.31.0 #41
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: 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 }} |