-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix coding convention auto and manual trigger filename
- Loading branch information
Bich Vu Thi Ngoc
committed
Oct 9, 2024
1 parent
8fed650
commit 33421cc
Showing
2 changed files
with
13 additions
and
13 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 |
---|---|---|
@@ -1,12 +1,9 @@ | ||
|
||
name: Coding Convention Manual | ||
name: Coding Convention | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'Branch to test' | ||
type: string | ||
default: 'iec_efr32' | ||
push: | ||
branches-ignore: | ||
- update-workflows | ||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
REPO_LINK: https://github.com/${{ github.repository }}.git | ||
|
@@ -17,8 +14,6 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
ref: "${{ github.event.inputs.branch }}" | ||
- name: Install python3.11 | ||
if: always() | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
|
||
name: Coding Convention | ||
name: Coding Convention Manual | ||
on: | ||
push: | ||
branches-ignore: | ||
- update-workflows | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: 'Branch to test' | ||
type: string | ||
default: 'iec_efr32' | ||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
REPO_LINK: https://github.com/${{ github.repository }}.git | ||
|
@@ -14,6 +17,8 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
ref: "${{ github.event.inputs.branch }}" | ||
- name: Install python3.11 | ||
if: always() | ||
run: | | ||
|