Skip to content

Commit

Permalink
chore: Rename subscribe workflow param to tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
bgins committed Feb 7, 2024
1 parent fcca2f7 commit 4a54efd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/schemas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ jobs:
- name: Run generate schemas
run: cargo run --bin schemas

# - name: Check for modified files
# id: git-check
# run: echo modified=$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi) >> $GITHUB_OUTPUT

- name: Check for changed files
id: changed-files
uses: tj-actions/changed-files@v42
Expand All @@ -41,7 +37,6 @@ jobs:
- 'homestar-runtime/schemas/docs/*.json'
- name: Push changes
# if: steps.git-check.outputs.modified == 'true'
if: steps.changed-files-yaml.outputs.docs_any_changed == 'true'
run: |
git config user.name "${GITHUB_ACTOR}"
Expand Down
2 changes: 1 addition & 1 deletion homestar-runtime/schemas/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ fn generate_api_doc(
param_structure: Some(MethodObjectParamStructure::ByName),
params: vec![ContentDescriptorOrReference::ContentDescriptorObject(
ContentDescriptorObject {
name: "workflow".to_string(),
name: "tasks".to_string(),
summary: None,
description: None,
required: Some(true),
Expand Down

0 comments on commit 4a54efd

Please sign in to comment.