-
-
Notifications
You must be signed in to change notification settings - Fork 321
27 lines (25 loc) · 923 Bytes
/
post-release.yml
File metadata and controls
27 lines (25 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Post Release
on:
workflow_dispatch:
inputs:
target_branch:
description: 'Target branch (e.g., main, 8.0-stable)'
required: true
default: 'main'
type: string
repository_dispatch:
types: [post-release]
jobs:
post-release:
uses: AlchemyCMS/.github/.github/workflows/post-release.yml@main
with:
version_file_path: lib/alchemy/version.rb
target_branch: ${{ github.event.client_payload.target_branch || inputs.target_branch }}
secrets:
app_id: ${{ vars.ALCHEMY_BOT_APP_ID }}
app_private_key: ${{ secrets.ALCHEMY_BOT_APP_PRIVATE_KEY }}
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
mastodon_access_token: ${{ secrets.MASTODON_ACCESS_TOKEN }}
mastodon_instance: ${{ secrets.MASTODON_INSTANCE }}
bluesky_identifier: ${{ secrets.BLUESKY_IDENTIFIER }}
bluesky_password: ${{ secrets.BLUESKY_PASSWORD }}