Skip to content

fixup! fixup! enhance(scripts/release): pass commit message to commit… #18

fixup! fixup! enhance(scripts/release): pass commit message to commit…

fixup! fixup! enhance(scripts/release): pass commit message to commit… #18

Workflow file for this run

name: Release PR
on:
push:
branches:
- main
- release-workflow
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
permissions:
contents: write
pull-requests: write
jobs:
create-pr:
name: Create release PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org/"
cache: npm
- run: npm ci
- name: "Setup git"
run: |
git config user.email [email protected]
git config user.name mdn-bot
- run: npm run release