You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
588 B
YAML
24 lines
588 B
YAML
1 year ago
|
name: Format Pull Request Files
|
||
|
|
||
|
on:
|
||
|
issue_comment:
|
||
|
types: [created]
|
||
|
|
||
|
env:
|
||
|
bashPass: \033[32;1mPASSED -
|
||
|
bashInfo: \033[33;1mINFO -
|
||
|
bashFail: \033[31;1mFAILED -
|
||
|
bashEnd: \033[0m
|
||
|
|
||
|
jobs:
|
||
|
Formatting:
|
||
|
name: Run Formatting Check
|
||
|
if: ${{ github.event.issue.pull_request }} &&
|
||
|
( ( github.event.comment.body == '/bot run uncrustify' ) ||
|
||
|
( github.event.comment.body == '/bot run formatting' ) )
|
||
|
runs-on: ubuntu-20.04
|
||
|
steps:
|
||
|
- name: Apply Formatting Fix
|
||
|
uses: FreeRTOS/CI-CD-Github-Actions/formatting-bot@main
|
||
|
id: check-formatting
|