-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also add Prettier job to format CciNistMappingData.ts
Signed-off-by: Joyce Quach <[email protected]>
- Loading branch information
Showing
1 changed file
with
15 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ on: | |
- cron: '0 0 1 * *' | ||
|
||
jobs: | ||
Convert-CCI-List: | ||
convert-cci-list: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout the code | ||
|
@@ -57,3 +57,17 @@ jobs: | |
with: | ||
github_token: ${{secrets.GITHUB_TOKEN}} | ||
branch: ${{github.ref}} | ||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{github.head_ref}} | ||
fetch-depth: 0 | ||
|
||
- name: Prettify code | ||
uses: creyD/[email protected] | ||
with: | ||
only_changed: True |