Skip to content

chore: release 1.7.1 (#2558) #42

chore: release 1.7.1 (#2558)

chore: release 1.7.1 (#2558) #42

on:
push:
branches: [ main ]
name: Create Release PR
permissions:
actions: write
contents: write
pull-requests: write
jobs:
prepare-release:
if: "!contains(github.event.head_commit.message, 'chore: prepare release')" # Skip merges from releases
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config --global user.name GitHub Actions
git config user.email github-actions@github.com
- uses: knope-dev/action@407e9ef7c272d2dd53a4e71e39a7839e29933c48 # v2.1.0
with:
version: 0.16.2
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: knope prepare-release --verbose
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true