From 2b2e74d92986837442669fadbcf67b2af211b793 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Jun 2025 12:16:07 +0000 Subject: [PATCH 1/2] Bump requests in /test in the pip group across 1 directory Bumps the pip group with 1 update in the /test directory: [requests](https://github.com/psf/requests). Updates `requests` from 2.32.3 to 2.32.4 - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.32.3...v2.32.4) --- updated-dependencies: - dependency-name: requests dependency-version: 2.32.4 dependency-type: direct:production dependency-group: pip ... Signed-off-by: dependabot[bot] --- test/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/requirements.txt b/test/requirements.txt index 9ab9257..09a704f 100644 --- a/test/requirements.txt +++ b/test/requirements.txt @@ -1,5 +1,5 @@ behave==1.2.6 -requests==2.32.3 +requests==2.32.4 zeep websocket-client PyHamcrest \ No newline at end of file From 770b3d625ee112eb188db7f6cd6216a9d255c9a9 Mon Sep 17 00:00:00 2001 From: Jeff Flater Date: Mon, 21 Jul 2025 11:32:11 -0500 Subject: [PATCH 2/2] test --- .github/workflows/enforce-develop-pr.yml | 36 ++++++++++++------------ .github/workflows/enforce-staging-pr.yml | 36 ++++++++++++------------ 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.github/workflows/enforce-develop-pr.yml b/.github/workflows/enforce-develop-pr.yml index 2acc99f..c8ed216 100644 --- a/.github/workflows/enforce-develop-pr.yml +++ b/.github/workflows/enforce-develop-pr.yml @@ -1,20 +1,20 @@ -name: Enforce PRs Only from Develop +# name: Enforce PRs Only from Develop -on: - pull_request: - branches: [staging] - types: [opened, synchronize, reopened] +# on: +# pull_request: +# branches: [staging] +# types: [opened, synchronize, reopened] -jobs: - check-develop-only: - runs-on: ubuntu-latest - steps: - - name: Fail if source is not develop - run: | - echo "Source branch: ${{ github.head_ref }}" - if [[ "${{ github.head_ref }}" != "develop" ]]; then - echo "❌ Only PRs from 'develop' branch are allowed to merge into 'staging'." - exit 1 - else - echo "✅ PR is from develop branch. Proceeding." - fi +# jobs: +# check-develop-only: +# runs-on: ubuntu-latest +# steps: +# - name: Fail if source is not develop +# run: | +# echo "Source branch: ${{ github.head_ref }}" +# if [[ "${{ github.head_ref }}" != "develop" ]]; then +# echo "❌ Only PRs from 'develop' branch are allowed to merge into 'staging'." +# exit 1 +# else +# echo "✅ PR is from develop branch. Proceeding." +# fi diff --git a/.github/workflows/enforce-staging-pr.yml b/.github/workflows/enforce-staging-pr.yml index 16eb376..247c9ad 100644 --- a/.github/workflows/enforce-staging-pr.yml +++ b/.github/workflows/enforce-staging-pr.yml @@ -1,20 +1,20 @@ -name: Enforce PRs Only from Staging +# name: Enforce PRs Only from Staging -on: - pull_request: - branches: [main] - types: [opened, synchronize, reopened] +# on: +# pull_request: +# branches: [main] +# types: [opened, synchronize, reopened] -jobs: - check-branch: - runs-on: ubuntu-latest - steps: - - name: Fail if source is not staging - run: | - echo "Source branch: ${{ github.head_ref }}" - if [[ "${{ github.head_ref }}" != "staging" ]]; then - echo "❌ Only PRs from 'staging' are allowed to merge into 'main'." - exit 1 - else - echo "✅ PR is from staging branch. Proceeding." - fi +# jobs: +# check-branch: +# runs-on: ubuntu-latest +# steps: +# - name: Fail if source is not staging +# run: | +# echo "Source branch: ${{ github.head_ref }}" +# if [[ "${{ github.head_ref }}" != "staging" ]]; then +# echo "❌ Only PRs from 'staging' are allowed to merge into 'main'." +# exit 1 +# else +# echo "✅ PR is from staging branch. Proceeding." +# fi