Update subproject commit reference and enhance GitHub workflows

- Updated the subproject commit reference in the skills directory.
- Modified the build workflow to enable submodule fetching.
- Standardized quotation styles in the package-and-publish workflow for consistency.
- Refactored the `setSkillOAuthCredential` function for improved readability.
- Added an attribute to the `Error` variant in the `SkillMessage` enum to suppress warnings for unused code.
This commit is contained in:
Steven Enamakel
2026-02-10 16:41:29 +05:30
parent 95b7e2acce
commit fa41d90c2d
5 changed files with 19 additions and 14 deletions
+4 -1
View File
@@ -58,7 +58,10 @@ const skillsSlice = createSlice({
}
},
setSkillOAuthCredential(state, action: PayloadAction<{ skillId: string; credential: OAuthCredential | undefined }>) {
setSkillOAuthCredential(
state,
action: PayloadAction<{ skillId: string; credential: OAuthCredential | undefined }>
) {
const { skillId, credential } = action.payload;
if (state.skills[skillId]) {
state.skills[skillId].oauthCredential = credential;