Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add automated-create-release-version.yml #43

Merged
merged 1 commit into from
Mar 29, 2024
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
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 }}"}'
Loading