Skip to content

Commit 48ef0bc

Browse files
committed
chore: update slackapi/slack-github-action action to v2
1 parent cbd8fd6 commit 48ef0bc

16 files changed

+18
-18
lines changed

.github/workflows/checklist-integrated-staging.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
allowed-skips: checklist-SDK, checklist-export, checklist-boiler-app
129129
jobs: ${{ toJSON(needs) }}
130130
- name: Send Slack notification
131-
uses: slackapi/slack-github-action@v1.27.1
131+
uses: slackapi/slack-github-action@v2.0.0
132132
if: ${{ !cancelled() && needs.setup-stage.outputs.send_message_to_slack_channel == 'true' }}
133133
with:
134134
channel-id: panther-checklist-testing

.github/workflows/doc-strorybook-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
needs: [storybook-deploy]
2121
steps:
2222
- name: Notify to slack
23-
uses: slackapi/slack-github-action@v1.25.0
23+
uses: slackapi/slack-github-action@v2.0.0
2424
with:
2525
channel-id: "#javascript-notifications"
2626
slack-message: "The Storybook for *gooddata-ui-sdk* has been successfully deployed. :tada:"

.github/workflows/git-backmerge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: echo "The auto-merge outputs are ${{ needs.auto-merge.outputs.has-conflicts }} and ${{ needs.auto-merge.outputs.pull-request-url }}"
2222
- name: Notify to slack no conflicts
2323
if: ${{ needs.auto-merge.outputs.has-conflicts == 'false' }}
24-
uses: slackapi/slack-github-action@v1.25.0
24+
uses: slackapi/slack-github-action@v2.0.0
2525
with:
2626
channel-id: "#javascript-notifications"
2727
slack-message: "The backmerge from the release is ready and can be easily merged to the master branch. It won't cause any problems because there are *no conflicts*. ${{env.PULL_REQUEST }}"
@@ -30,7 +30,7 @@ jobs:
3030
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
3131
- name: Notify to slack has conflicts
3232
if: ${{ needs.auto-merge.outputs.has-conflicts == 'true' }}
33-
uses: slackapi/slack-github-action@v1.25.0
33+
uses: slackapi/slack-github-action@v2.0.0
3434
with:
3535
channel-id: "#javascript-notifications"
3636
slack-message: "The backmerge from the release is ready and can not be easily merged into the master branch. However, *there are conflicts* in the PR that needs to be resolved. ${{env.PULL_REQUEST }}"

.github/workflows/push-e2e-integrated-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: [ubuntu-latest]
4141
steps:
4242
- name: Inform to slack when workflows failed
43-
uses: slackapi/slack-github-action@v1.25.0
43+
uses: slackapi/slack-github-action@v2.0.0
4444
with:
4545
channel-id: "#javascript-notifications"
4646
slack-message: ":warning: post merge e2e in *gooddata-sdk-ui* initiated by ${{env.AUTHOR}} encountered an error during execution. Check the *<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|log here>* for further information."

.github/workflows/push-fossa-update-attribution-file.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: [ubuntu-latest]
4141
steps:
4242
- name: Inform to slack when fossa workflows failed
43-
uses: slackapi/slack-github-action@v1.25.0
43+
uses: slackapi/slack-github-action@v2.0.0
4444
with:
4545
channel-id: "#javascript-notifications"
4646
slack-message: ":warning: The FOSSA scan and attribution file creation failed. Check the *<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|log here>* for further information."

.github/workflows/release-bump-master-to-major.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
needs: [prepare-versions-master]
2828
steps:
2929
- name: Inform to slack
30-
uses: slackapi/slack-github-action@v1.25.0
30+
uses: slackapi/slack-github-action@v2.0.0
3131
with:
3232
channel-id: '#javascript-notifications'
3333
slack-message: "The *master* branch of *gooddata-ui-sdk* has been bumped to the next major version, *${{ env.VERSION }}*."

.github/workflows/release-code-drop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
needs: [prepare-versions-release, prepare-versions-master]
7171
steps:
7272
- name: Inform to slack
73-
uses: slackapi/slack-github-action@v1.25.0
73+
uses: slackapi/slack-github-action@v2.0.0
7474
with:
7575
channel-id: ${{ matrix.channels }}
7676
slack-message: "The *gooddata-ui-sdk*, has successfully completed its code drop. The bumped versions are *${{ env.RELEASE_VERSION }}* (release) and *${{ env.MASTER_VERSION }}* (master)."

.github/workflows/release-postrelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
needs: [publish-documentation, get-version-from-release-branch]
4848
steps:
4949
- name: Notify to slack
50-
uses: slackapi/slack-github-action@v1.25.0
50+
uses: slackapi/slack-github-action@v2.0.0
5151
with:
5252
channel-id: ${{ matrix.channels }}
5353
slack-message: "The release of *gooddata-ui-sdk@${{ needs.get-version-from-release-branch.outputs.version }}*, has been successful. :tada:"

.github/workflows/rw-perform-release-major-minor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
SOURCE_BRANCH: ${{ inputs.source-branch }}
124124

125125
- name: Notify to slack
126-
uses: slackapi/slack-github-action@v1.25.0
126+
uses: slackapi/slack-github-action@v2.0.0
127127
with:
128128
channel-id: "#javascript-notifications"
129129
slack-message: ${{ env.RELEASE_MESSAGE }}

.github/workflows/rw-perform-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
SOURCE_BRANCH: ${{ inputs.source-branch }}
125125

126126
- name: Notify to slack
127-
uses: slackapi/slack-github-action@v1.25.0
127+
uses: slackapi/slack-github-action@v2.0.0
128128
with:
129129
channel-id: "#javascript-notifications"
130130
slack-message: ${{ env.RELEASE_MESSAGE }}

0 commit comments

Comments
 (0)