chore/workflow-update/draft/3 #4
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
# ╭──────────────────────────────────────────────────────────────────╮ | |
# │ 🐙 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 }} |