Skip to content

Commit

Permalink
ci: Workflow Bot -- Update ALL Dependencies (main) (#6)
Browse files Browse the repository at this point in the history
.github/FUNDING.yml               |   2 +-
 .github/actions/output/README.md  |  43 +++++++++++++
 .github/actions/summary/README.md |   4 +-
 .release-please-manifest.json     |   2 +-
release-please-config.json | 128 +++++++++++++++++++-------------------
 5 files changed, 110 insertions(+), 69 deletions(-)

Co-authored-by: Jason3S <Jason3S@users.noreply.github.com>
  • Loading branch information
1 parent bc9b26a commit 2c7c709
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 69 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
- streetsidesoftware
- streetsidesoftware
patreon: # streetsidesoftware
open_collective: # code-spell-checker
ko_fi: # Replace with a single Ko-fi username
Expand Down
43 changes: 43 additions & 0 deletions .github/actions/output/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,46 @@ Set the `output.value` of a step. This is a useful way to keep calculated values
Example:

<!--- @@inject: ../../workflows/example-output.yaml --->

```yaml
name: '📗 Example Set Output'

on:
workflow_dispatch:

permissions:
contents: read

jobs:
run-example:
runs-on: ubuntu-latest
strategy:
matrix:
version: [10, 12, 14]
steps:
- name: Test Step Output
id: my_step
uses: streetsidesoftware/actions/.github/actions/output@v1
with:
value: |
Action: ${{ github.action }}
Actor: ${{ github.actor }}
Ref: ${{ github.ref }}
- name: Detect if Main
id: is_main
uses: streetsidesoftware/actions/.github/actions/output@v1
with:
value: ${{ github.ref == 'refs/heads/main' }}

- name: Summary
uses: streetsidesoftware/actions/.github/actions/summary@v1
with:
text: |
# Summary
Node: `${{ matrix.version }}
Output: ${{ steps.my_step.outputs.value }}
Is Main: ${{ steps.is_main.outputs.value }}
```

<!--- @@inject-end: ../../workflows/example-output.yaml --->
4 changes: 2 additions & 2 deletions .github/actions/summary/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Example:
<!--- @@inject: ../../workflows/example-summary.yaml --->

```yaml
name: Example Summary
name: '📗 Example Summary'

on:
workflow_dispatch:
Expand All @@ -23,7 +23,7 @@ jobs:
version: [10, 12, 14]
steps:
- name: Summary
uses: streetsidesoftware/actions/.github/actions/summary@db72c52e539c5e2c1423c949aad1d7d26f35931f
uses: streetsidesoftware/actions/.github/actions/summary@v1
with:
text: |
# Summary
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "1.0.0"
}
128 changes: 63 additions & 65 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,66 @@
{
"changelog-sections": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Updates and Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": true
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": false
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
"changelog-sections": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Updates and Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous",
"hidden": true
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": false
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
}
],
"packages": {
".": {
"releaseType": "node",
"extra-files": ["README.md"]
}
}
],
"packages": {
".": {
"releaseType": "node",
"extra-files": [
"README.md"
]
}
}
}

0 comments on commit 2c7c709

Please sign in to comment.