fixup! fixup! enhance(scripts/release): pass commit message to commit… #18
Workflow file for this run
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
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 |