Release PR #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |