Skip to content

Bump get-func-name from 2.0.0 to 2.0.2 #55

Bump get-func-name from 2.0.0 to 2.0.2

Bump get-func-name from 2.0.0 to 2.0.2 #55

Workflow file for this run

#name: Create release
#
#on:
# push:
# tags:
# - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
#
#jobs:
# build:
# name: "🚀 Release"
# runs-on: ubuntu-latest
# steps:
# - name: "Check-out"
# uses: actions/checkout@v1
# - name: "Update Release CHANGELOG"
# id: update-release-changelog
# uses: heinrichreimer/[email protected]
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# onlyLastTag: true
# stripHeaders: false
# base: "CHANGELOG.md"
# headerLabel: "# Changelog"
# breakingLabel: '### Breaking'
# enhancementLabel: '### Enhancements'
# stripGeneratorNotice: true
# bugsLabel: '### Fixes'
# issues: true
# issuesWoLabels: true
# pullRequests: true
# prWoLabels: true
# author: false
# verbose: true
# - name: Commit CHANGELOG Changes
# run: |
# git add .
# git config user.name "zihe.jia"
# git config user.email "[email protected]"
# git commit -m "Update CHANGELOG"
# - name: Push CHANGELOG changes
# uses: ad-m/[email protected]
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# branch: master
# force: true
# - name: "Prepare for the Github Release"
# id: generate-release-changelog
# uses: heinrichreimer/[email protected]
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# output: "output.md"
# headerLabel: "# Changelog"
# onlyLastTag: true
# stripHeaders: false
# breakingLabel: '### Breaking'
# enhancementLabel: '### Enhancements'
# stripGeneratorNotice: true
# bugsLabel: '### Fixes'
# issues: true
# issuesWoLabels: true
# pullRequests: true
# prWoLabels: true
# author: false
# verbose: true
# - name: "🚀 Create GitHub Release"
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# body: ${{ steps.generate-release-changelog.outputs.changelog }}