Skip to content

Release PR

Release PR #14

Workflow file for this run

# Action that creates a release PR
# Must be manually triggered.
# See make release-pr for details
name: Release PR
permissions:
contents: write
pull-requests: write
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
container:
# See https://github.com/3box/rust-builder
image: public.ecr.aws/r5b3e0r5/3box/rust-builder:latest
options: --user root
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
chown root:root -R .
git config user.email "[email protected]"
git config user.name "Github Automation"
- name: Create release PR
run: make release-pr