Skip to content
Open
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
11 changes: 6 additions & 5 deletions .github/actions/slack-notification/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ runs:
using: "composite"
steps:
- name: Send Slack notification
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2
uses: slackapi/slack-github-action@b0fa283ad8fea605de13dc3f449259339835fc52 # v2.1.0
with:
channel-id: ${{ inputs.channel-id }}
slack-message: ${{ inputs.message }}
env:
SLACK_BOT_TOKEN: ${{ inputs.bot-token }}
method: chat.postMessage
token: ${{ inputs.bot-token }}
payload: |
channel: ${{ inputs.channel-id }}
text: ${{ inputs.message }}
4 changes: 2 additions & 2 deletions .github/workflows/update_releases_list.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Create Pull Request
id: pr
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
with:
commit-message: "[BUILD] Update Release List and Version Compatibility"
committer: github-action <41898282+github-actions[bot]@users.noreply.github.com>
Expand All @@ -56,4 +56,4 @@ jobs:

A new version of Native Template has been released with updated version compatibility information.

Please review the PR for more details: ${{ github.server_url }}/${{ github.repository }}/pull/${{ steps.pr.outputs.number }}
Please review the PR for more details: ${{ github.server_url }}/${{ github.repository }}/pull/${{ steps.pr.outputs.pull-request-number }}
Loading