Skip to content

Bump requests from 2.33.1 to 2.34.2 #35

Bump requests from 2.33.1 to 2.34.2

Bump requests from 2.33.1 to 2.34.2 #35

Workflow file for this run

name: Bump version
on:
# Both items below have to be true; PR has to be against master, and closed
pull_request:
types:
- closed
branches:
- master
jobs:
build:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.75.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: false
DEFAULT_BUMP: patch
DRY_RUN: false