mirror of
https://github.com/XFox111/PasswordGeneratorExtension.git
synced 2026-04-22 08:08:01 +03:00
992949f797
* Bump @babel/traverse from 7.23.0 to 7.23.3 (#237) Bumps [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) from 7.23.0 to 7.23.3. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.3/packages/babel-traverse) --- updated-dependencies: - dependency-name: "@babel/traverse" dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Updated pr_next.yaml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
32 lines
714 B
YAML
32 lines
714 B
YAML
name: PR next workflow
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'package.json'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
create-release-draft:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
|
|
- name: Get version from package.json
|
|
id: get_version
|
|
run: |
|
|
extver=`jq -r ".version" package.json`
|
|
echo "version=$extver" >> "$GITHUB_OUTPUT"
|
|
|
|
- uses: dev-build-deploy/release-me@v0.14.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
prefix: v
|
|
draft: true
|
|
version: ${{ steps.get_version.outputs.version }}
|
|
release-notes: .github/release_description_template.md
|