Skip to content

Commit

Permalink
Bump to v0.9.85
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianrath committed May 25, 2024
1 parent 74039ce commit fab55ef
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ jobs:
name: My workflow
steps:
- name: Execute Action Graph
uses: actionforge/action@5636645834e4a75cbc8c6c204e872ddc27632738 # v0.9.52
uses: actionforge/action@1cb7c397d2c7caa8d8071041976b6f2e4e2ead20 # v0.9.58
with:
graph_file: build-and-publish.yml
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,18 @@ jobs:
name: My workflow
steps:
- name: Execute Action Graph
uses: actionforge/action@5636645834e4a75cbc8c6c204e872ddc27632738 # v0.9.52
uses: actionforge/action@1cb7c397d2c7caa8d8071041976b6f2e4e2ead20 # v0.9.58
with:
graph_file: my-workflow.yml

# Uncomment to use secrets within the action graph.
# secrets: ${{ toJson(secrets) }}

# Uncomment to pass inputs from a 'workflow_dispatch' event.
# inputs: ${{ toJson(inputs) }}

# Uncomment to access values set by the matrix strategy.
# matrix: ${{ toJson(matrix) }}
```

The second one is the action graph itself. This is a YAML file that you can edit via the graph editor that is part of this extension.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "actionforge",
"displayName": "Actionforge Graph Editor",
"description": "A visual editor for GitHub Actions workflows",
"version": "0.9.84",
"version": "0.9.85",
"publisher": "Actionforge",
"icon": "assets/icon.png",
"homepage": "https://www.actionforge.dev",
Expand Down
14 changes: 12 additions & 2 deletions src/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,19 @@ jobs:
name: My workflow
steps:
- name: Execute Action Graph
uses: actionforge/action@5636645834e4a75cbc8c6c204e872ddc27632738 # v0.9.52
uses: actionforge/action@1cb7c397d2c7caa8d8071041976b6f2e4e2ead20 # v0.9.58
with:
graph_file: ${newName}`;
graph_file: ${newName}
# Uncomment to use secrets within the action graph.
# secrets: \${{ toJson(secrets) }}
# Uncomment to pass inputs from a 'workflow_dispatch' event.
# inputs: \${{ toJson(inputs) }}
# Uncomment to access values set by the matrix strategy.
# matrix: \${{ toJson(matrix) }}
`;

const edit = new vscode.WorkspaceEdit();
// create action graph file
Expand Down

0 comments on commit fab55ef

Please sign in to comment.