Skip to content

Commit

Permalink
Issue #12082: Github action Publish release notes Twitter
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and romani committed Aug 27, 2022
1 parent b519b15 commit 02babf8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish_releasenotes_for_twitter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#############################################################################
# GitHub Action to Publish Tweet of release notes.
#
#############################################################################
name: "Publish Tweet for Release notes"
on:
workflow_dispatch:
inputs:
version:
description: 'Target Version without (-SNAPSHOT)'
required: true
jobs:
publish:
name: Publish releasenotes tweet for ${{ github.event.inputs.version }}
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
uses: actions/checkout@v2
- name: Run Shell Script
run: |
./.ci/tweet-releasenotes.sh ${{ github.event.inputs.version }}

0 comments on commit 02babf8

Please sign in to comment.