Skip to content

Create Release PR

Create Release PR #78

# Creates packages
name: Create Release PR
permissions:
contents: write
pull-requests: write
on:
workflow_dispatch: {}
jobs:
release:
name: Release
runs-on: ubuntu-latest
container:
# See https://github.com/3box/rust-builder
image: public.ecr.aws/r5b3e0r5/3box/rust-builder:latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PAT }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: git config
run: |
git config --global --add safe.directory '*'
git config user.email "[email protected]"
git config user.name "Github Automation"
- name: Create release PR
run: make release-pr