Skip to content
Merged
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
31 changes: 31 additions & 0 deletions .github/workflows/release-ready.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release Ready Alert

on:
pull_request:
types: [closed]
paths:
- 'common/devtools/**'

permissions: {}

jobs:
notify:
name: Notify Release Ready
if: >
github.event.repository.fork == false &&
github.event.pull_request.merged == true &&
github.event.pull_request.head.ref == 'pinned-browser-updates' &&
contains(github.event.pull_request.title, 'with CDP')
Comment thread
titusfortner marked this conversation as resolved.
runs-on: ubuntu-latest
steps:
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_ICON_EMOJI: ':rocket:'
SLACK_COLOR: good
SLACK_CHANNEL: selenium-tlc
SLACK_USERNAME: GitHub Workflows
SLACK_TITLE: Ready for Release
SLACK_MESSAGE: "CDP was updated in #${{ github.event.pull_request.number }}. Selenium is ready for the next release. Anything that needs to land before it goes out?"
MSG_MINIMAL: actions url
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
Loading