subresource move #92
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
name: <Native> Apply clang format | |
#on: [push, pull_request] | |
on: | |
pull_request_target: | |
types: [closed] | |
paths: | |
- 'templates/**' | |
- 'native/**' | |
jobs: | |
Clang-Format: | |
if: github.event_name == 'pull_request_target' && github.event.action == 'closed' && github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ github.token }} | |
ref: ${{ github.head_sha }} | |
- id: get_change_files | |
uses: fish9167/[email protected] | |
with: | |
output: ' ' | |
fileOutput: ' ' | |
- name: Echo change files | |
run: | | |
cat $HOME/files.txt | |
mv $HOME/files.txt ${{github.workspace}}/files.txt | |
- uses: fish9167/clang-format-lint-action@master | |
with: | |
source: ./native | |
exclude: ./native/cocos/bindings/auto | |
extensions: 'c,h,hpp,cpp,cxx' | |
style: file | |
inplace: True | |
clangFormatVersion: 12 | |
- name: Create Pull Request | |
uses: fish9167/create-pull-request@v3 | |
with: | |
title: '[ci skip][AUTO]: Automated PR to fix formatting' | |
body: | | |
Automated PR to fix formatting | |
committer: cocos-robot <[email protected]> | |
author: cocos-robot <[email protected]> | |
commit-message: "[ci skip][AUTO]: Automated clang-format update: ${{ github.event.pull_request.head.sha }} (#${{ github.event.number }})" | |
token: ${{ secrets.PR_TOKEN }} | |
push-to-fork: cocos-robot/engine | |
branch: t/bot/fix-format | |
branch-suffix: short-commit-hash | |
delete-branch: true |