-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: default branch on clang-lang formatter
- Loading branch information
1 parent
9cc8ed0
commit 3682838
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,28 +13,28 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
if: github.ref != 'refs/heads/main' | ||
if: github.ref != 'refs/heads/master' | ||
uses: fkirc/skip-duplicate-actions@master | ||
with: | ||
concurrent_skipping: "same_content" | ||
cancel_others: true | ||
|
||
- name: Set up Git | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
if: ${{ github.ref != 'refs/heads/master' }} | ||
run: | | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "GitHub Actions" | ||
- name: Actions checkout | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
if: ${{ github.ref != 'refs/heads/master' }} | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Run clang format lint | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
if: ${{ github.ref != 'refs/heads/master' }} | ||
uses: DoozyX/[email protected] | ||
with: | ||
source: "source" | ||
|
@@ -43,7 +43,7 @@ jobs: | |
inplace: true | ||
|
||
- name: Run add and commit | ||
if: ${{ github.ref != 'refs/heads/main' }} | ||
if: ${{ github.ref != 'refs/heads/master' }} | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
author_name: GitHub Actions | ||
|