Skip to content

Commit

Permalink
fix coding convention auto and manual trigger filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Bich Vu Thi Ngoc committed Oct 9, 2024
1 parent 8fed650 commit 33421cc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/coding_convention.yaml
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
Expand All @@ -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: |
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/coding_convention_manual.yaml
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
Expand All @@ -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: |
Expand Down

0 comments on commit 33421cc

Please sign in to comment.