Skip to content

chore/workflow-update/draft/4 #5

chore/workflow-update/draft/4

chore/workflow-update/draft/4 #5

Workflow file for this run

# ╭──────────────────────────────────────────────────────────────────╮
# │ 🐙 GITHUB ACIONS CI/CD WORKFLOW │
# ┣──────────────────────────────────────────────────────────────────┫
# │ Responsible for: │
# │ ➤ [1] auto-commenting of project pull-request. │
# ╰──────────────────────────────────────────────────────────────────╯
name: 'Pull-Request [to-main]'
on:
pull_request:
branches:
- main
types:
- opened
jobs:
# ╭──────────────────────────────────────────────────────────────────╮
# │ NOTE: │
# │ ➤ [1] auto-commenting of project pull-request. │
# ╰──────────────────────────────────────────────────────────────────╯
add_comment:
name: '📝 JOB /:/ PR add comment'
runs-on: ubuntu-22.04
steps:
- uses: mshick/add-pr-comment@v1
with:
message: |
> [!IMPORTANT]
> Please set a label to **EITHER** `semver:patch`, `semver:minor`, or `semver:major` to **THIS** `Pull-Request`.
>
> If you are not sure which label to apply, please ask for help from a team member.
>
> **Ignore this message if this is a non `feature` OR `fix` change.**
repo-token: ${{ secrets.GITHUB_TOKEN }}