Skip to content

ci(actions): make sure the GitHub Actions workflows will use the corr… #3

ci(actions): make sure the GitHub Actions workflows will use the corr…

ci(actions): make sure the GitHub Actions workflows will use the corr… #3

---
# Knope GitHub Action configuration file
name: Create Release PR
on:
push:
branches:
- develop
jobs:
prepare-release:
# Skip merges from releases
if: "!contains(github.event.head_commit.message, 'chore: prepare release')"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
- name: Configure Git
run: |
git config --global user.name GitHub Actions
git config user.email [email protected]
- uses: knope-dev/[email protected]
with:
version: 0.13.0
- run: knope prepare-release --verbose
env:
GITHUB_TOKEN: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
continue-on-error: true