We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ceec1a commit 9ddf73bCopy full SHA for 9ddf73b
.github/workflows/notify-unreleased-commits.yml
@@ -14,8 +14,8 @@ jobs:
14
- name: List Commits
15
id: list-commits
16
run: |
17
- OUTPUT="$(./scripts/list-unreleased-commits.sh)"
18
- echo "::set-output name=summary::${OUTPUT}"
+ SUMMARY="$(./scripts/list-unreleased-commits.sh)"
+ echo "summary=$SUMMARY" >> $GITHUB_OUTPUT
19
20
- name: Discord notification
21
uses: Ilshidur/action-discord@d2594079a10f1d6739ee50a2471f0ca57418b554
@@ -24,7 +24,7 @@ jobs:
24
with:
25
args: |
26
```
27
- {{ steps.list-commits.outputs.summary }}
+ ${{ steps.list-commits.outputs.summary }}
28
29
30
If a package needs released, please [run the workflow](https://github.com/wxt-dev/wxt/actions/workflows/release.yml).
0 commit comments