Skip to content

Commit fc2abe1

Browse files
committed
rename
1 parent e0fc7ed commit fc2abe1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deploy.yml renamed to .github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
name: Deploy
1+
name: Release
22
on:
33
push:
44
tags:
55
- '*'
66
workflow_dispatch:
77

88
jobs:
9-
deploy:
10-
name: Deploy
9+
release:
10+
name: Release
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
@@ -25,15 +25,15 @@ jobs:
2525
notify-on-failure:
2626
name: Slack notify on failure
2727
if: ${{ failure() }}
28-
needs: [ deploy ]
28+
needs: [ release ]
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: rtCamp/action-slack-notify@v2
3232
env:
3333
SLACK_COLOR: 'danger'
3434
SLACK_ICON_EMOJI: ':github:'
35-
SLACK_MESSAGE: ${{ format('Failed to deploy {1}{3} {0}/{1}/actions/runs/{2}', github.server_url, github.repository, github.run_id, ':') }}
36-
SLACK_TITLE: Deployment Failure
35+
SLACK_MESSAGE: ${{ format('Failed to release {1}{3} {0}/{1}/actions/runs/{2}', github.server_url, github.repository, github.run_id, ':') }}
36+
SLACK_TITLE: Release Failure
3737
SLACK_USERNAME: GitHub Actions
3838
SLACK_MSG_AUTHOR: twilio-dx
3939
SLACK_FOOTER: Posted automatically using GitHub Actions

0 commit comments

Comments
 (0)