Skip to content

Sweep: Optimize the README to make it look professional or polished #6

Sweep: Optimize the README to make it look professional or polished

Sweep: Optimize the README to make it look professional or polished #6

Workflow file for this run

name: OpenIM Create Tag
on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
jobs:
create-tag:
if: startsWith(github.event.comment.body, '/create tag')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create Tag
run: |
COMMENT_BODY="${{ github.event.comment.body }}"
TAG=$(echo $COMMENT_BODY | awk '{print $3}')
COMMENT=$(echo $COMMENT_BODY | awk '{$1=$2=$3=""; print $0}')
COMMENT=$(echo $COMMENT | sed 's/^ *//;s/ *$//') # Remove leading and trailing whitespaces
echo "Creating tag $TAG with comment '$COMMENT'"
git config user.name "GitHub Action"
git config user.email "action@github.com"
git tag -a $TAG -m "$COMMENT"
git push origin $TAG
env:
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}