Fix GH_ORG_EMAIL typo #10
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: 'Dev - PR Close' | |
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- closed | |
jobs: | |
merge_pr: | |
name: 'PR Merged' | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Git config | |
env: | |
GH_ORG_EMAIL: "WikiGDrive" | |
GH_ORG_NAME: "wikigdrive@wikigdrive.com" | |
run: | | |
git config --global user.email "${GH_ORG_EMAIL}" | |
git config --global user.name "${GH_ORG_NAME}" | |
- name: Apply version bump (major) | |
if: contains(github.event.pull_request.labels.*.name, 'major') | |
run: npm version major | |
- name: Apply version bump (minor) | |
if: contains(github.event.pull_request.labels.*.name, 'minor') | |
run: npm version minor | |
- name: Apply version bump (patch) | |
if: contains(github.event.pull_request.labels.*.name, 'patch') | |
run: npm version patch | |
- name: Git push version bump | |
run: git push origin master --follow-tags --force | |
- name: Output current version | |
run: npm pkg get version |