Skip to content

Commit

Permalink
Add automated-create-release-version.yml (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
chauduyphanvu authored Mar 29, 2024
1 parent 0e02190 commit 9e811fd
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/automated-create-release-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Create Release Branch

on:
workflow_dispatch:
inputs:
adapter_version:
description: 'Adapter version (e.g. 4.9.2.0.0)'
required: true
partner_version:
description: 'Partner version (e.g. 9.2.0)'
required: true
repository_dispatch:
types: [create-release-branch]

jobs:
trigger:
runs-on: ubuntu-latest
steps:
# Since this workflow could be triggered by a user publicly or the internal cron job, we need to set the versions appropriately.
- name: Set versions
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
echo "Workflow was triggered by a user"
echo "ADAPTER_VERSION=${{ github.event.inputs.adapter_version }}" >> $GITHUB_ENV
echo "PARTNER_VERSION=${{ github.event.inputs.partner_version }}" >> $GITHUB_ENV
elif [[ "${{ github.event_name }}" == "repository_dispatch" ]]; then
echo "Workflow was triggered by a repository dispatch"
echo "ADAPTER_VERSION=${{ github.event.client_payload.adapter_version }}" >> $GITHUB_ENV
echo "PARTNER_VERSION=${{ github.event.client_payload.partner_version }}" >> $GITHUB_ENV
fi
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.GITHUBSERVICETOKEN }}
repository: ChartBoost/chartboost-mediation-android-actions
event-type: update-versions
client-payload: '{"adapter_version": "${{ env.ADAPTER_VERSION }}", "partner_version": "${{ env.PARTNER_VERSION }}", "repository": "${{ github.repository }}", "token": "${{ secrets.GITHUBSERVICETOKEN }}"}'

0 comments on commit 9e811fd

Please sign in to comment.