Skip to content

build(deps): bump github.com/open-feature/go-sdk from 1.13.1 to 1.14.0 #4043

build(deps): bump github.com/open-feature/go-sdk from 1.13.1 to 1.14.0

build(deps): bump github.com/open-feature/go-sdk from 1.13.1 to 1.14.0 #4043

Workflow file for this run

# SPDX-FileCopyrightText: Copyright 2023 The Minder Authors
# SPDX-License-Identifier: Apache-2.0
name: Pull Request Validation
on:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
check-pr-content:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'stacklokbot' }}
steps:
- name: Check PR for Change Type Selection
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
const pr = context.payload.pull_request;
if (!pr) {
console.log('This action must be run on a pull request event.');
core.setFailed('No pull request data found.');
return;
}
const prNumber = pr.number;
const body = pr.body;
console.log(`Processing PR #${prNumber}`);
const changeTypeRegex = /\- \[[xX]\] (Bug fix|Feature|Breaking change|Documentation|Refactoring)/;
if (!changeTypeRegex.test(body)) {
core.setFailed("You must select at least one Change Type.");
}