Skip to content

Commit

Permalink
ci: ignore gistr.js fs error
Browse files Browse the repository at this point in the history
gistr.js only needed for build
  • Loading branch information
Aetherinox committed Apr 27, 2024
1 parent d680765 commit e11281f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 29 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/pr-autoscan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
actions: read
issues: write
pull-requests: read

steps:

# ---------------------------------------------------------------------------------------
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
}
}
}
# ---------------------------------------------------------------------------------------
# set issue number
# ---------------------------------------------------------------------------------------
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
# ---------------------------------------------------------------------------------------
# checkout
# ---------------------------------------------------------------------------------------

- name: "☑️ Checkout"
id: task_autoscan_checkout
uses: actions/checkout@v4
Expand All @@ -160,7 +160,7 @@ jobs:
# ---------------------------------------------------------------------------------------
# nodejs
# ---------------------------------------------------------------------------------------

- name: "⚙️ Setup Node"
id: task_autocheck_nodejs
uses: actions/setup-node@v4
Expand All @@ -174,7 +174,7 @@ jobs:
uses: tj-actions/changed-files@v44
with:
separator: ","

# ---------------------------------------------------------------------------------------
# list of changed files
# ---------------------------------------------------------------------------------------
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
}
let date_created = dateTimeformat( date ) + " UTC";
/*
context.payload.pull_request.base.repo.owner.login
*/
Expand All @@ -273,18 +273,18 @@ jobs:
| Copied Files | ${{ steps.task_autocheck_changed_files_get.outputs.deleted_files_count }} |
| Deleted Files | ${{ steps.task_autocheck_changed_files_get.outputs.deleted_files_count }} |
`;
message.push ( md_table );
let error_Generic = "\n" +
"- `MyPlugin`\n" +
"- `MyPluginSettings`\n" +
let error_Generic = "\n" +
"- `MyPlugin`\n" +
"- `MyPluginSettings`\n" +
"- `SampleSettings`\n" +
"- `SampleSettingTab`\n" +
"- `SampleModal`\n"
let warn_BadWords = "\n" +
"- `Obsidian`\n" +
let warn_BadWords = "\n" +
"- `Obsidian`\n" +
"- `Settings`\n"
/*
Expand Down Expand Up @@ -322,6 +322,7 @@ jobs:
"package-lock.json",
"rollup.config.js",
"index.js",
"gistr.js",
"Docs/",
"tests/"
];
Expand Down Expand Up @@ -675,7 +676,7 @@ jobs:
if (context.payload.pull_request.labels.filter( label => label.name === "${{ env.LABEL_CHECK_STATUS_CHGMADE }}" ).length > 0 )
labels.push( "${{ env.LABEL_CHECK_STATUS_CHGMADE }}" );
if ( context.payload.pull_request.labels.filter( label => label.name === "${{ env.LABEL_CHECK_SCAN_SKIPPED }}" ).length > 0 )
labels.push( "${{ env.LABEL_CHECK_SCAN_SKIPPED }}" );
Expand Down Expand Up @@ -703,4 +704,4 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
body: message.join('\n'),
} );
} );
10 changes: 1 addition & 9 deletions tests/Gistr Demo/.obsidian/plugins/gistr/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"blk_pad_b": 18,
"textwrap": "Enabled",
"notitime": 10,
"ge_enable_updatenoti": true,
"sy_clr_lst_icon": "#757575E6",
"og_clr_bg_light": "#CBCBCB",
"og_clr_bg_dark": "#121315",
Expand All @@ -18,24 +17,17 @@
"og_clr_tx_dark": "#CAD3F5",
"og_opacity": 1,
"gh_clr_bg_light": "#E5E5E5",
"gh_clr_bg_dark": "#18191C",
"gh_clr_bg_dark": "#121315",
"gh_clr_sb_light": "#BA4956",
"gh_clr_sb_dark": "#BA496A",
"gh_clr_tx_light": "#2A2626",
"gh_clr_tx_dark": "#CAD3F5",
"gh_opacity": 1,
"ge_enable_ribbon_icons": false,
"sy_enable_ribbon_icons": true,
"sy_enable_autoupdate": true,
"sy_enable_autosave": false,
"sy_enable_autosave_strict": false,
"sy_enable_autosave_notice": false,
"sy_add_frontmatter": false,
"sy_save_list_showall": false,
"sy_save_list_datetime": "MM.DD.YYYY h:m:s a",
"sy_save_duration": 15,
"ge_contextmenu_sorting": [],
"portals": {},
"uuid": "",
"context_sorting": []
}
10 changes: 5 additions & 5 deletions tests/Gistr Demo/.obsidian/plugins/gistr/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tests/Gistr Demo/.obsidian/plugins/gistr/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "gistr",
"name": "Gistr",
"version": "1.6.7",
"version": "1.6.8",
"minAppVersion": "1.0.0",
"description": "Integrate Opengist and Github gists into your notes, allowing you to create, update, and share between your notes and gist services",
"author": "Aetherinox",
Expand Down

0 comments on commit e11281f

Please sign in to comment.