Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix notification workflows used during releases #3157

Merged
merged 4 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/notify-new-version-available-on-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
strategy:
matrix:
repository:
- bpmn-visualization-R'
- bpmn-visualization-R
steps:
# Need to checkout to access to the internal action
- uses: actions/checkout@v4
- name: Notify that a new bpmn-visualization version is available
uses: ./.github/actions/notify-PA-repo-of-new-version
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
# use the default GITHUB_TOKEN, this is possible because we are dispatching the same repository
event-type: new_version_available_on_npm
client-payload: '{ "version": "${{ inputs.version }}" }'
client-payload: "{ version: ${{ inputs.version }} }"
- name: Send message to Slack channel
if: success()
uses: slackapi/[email protected]
Expand Down
Loading