Skip to content

Commit

Permalink
chore: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Mar 28, 2024
1 parent 4b6187a commit a01f46c
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 41 deletions.
38 changes: 6 additions & 32 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- 'develop'
pull_request:
pull_request_target:
# Only following types are handled by the action, but one can default to all as well
types: [ opened, reopened, synchronize ]

Expand All @@ -26,35 +26,9 @@ jobs:
commitish: develop
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Extract version
id: version
run: echo "${{ steps.release_drafter.outputs.resolved_version }}" > VERSION
- name: Calculate code
id: code
run: |
IFS='.' read -ra VER <<< "$(cat VERSION)"
MAJOR=$((VER[0] * 1000000000))
MINOR=$((VER[1] * 1000000))
PATCH=$((VER[2] * 1000))
CODE=$((MAJOR + MINOR + PATCH))
echo "version=$(cat VERSION)" > gradle/version.properties
echo "code=$CODE" >> gradle/version.properties
echo "name=v$(cat VERSION)" >> gradle/version.properties
- name: Show version
run: cat gradle/version.properties

- name: Push auto generated version file
uses: stefanzweifel/git-auto-commit-action@v5
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
commit_message: "automation: update version.properties"
branch: platform/update-version-meta-data
commit_options: '--no-verify --signoff'
file_pattern: 'gradle/version.properties'
repository: .
commit_author: Author <actions@github.com>
create_branch: true
push_options: '--force'
skip_fetch: true
token: ${{ secrets.GITHUB_TOKEN }}
event-type: version-update-and-push
client-payload: '{"version": "${{ steps.release_drafter.outputs.resolved_version }}"}'
40 changes: 31 additions & 9 deletions .github/workflows/version-updater.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,56 @@
name: version-update

on:
push:
branches:
- platform/update-version-meta-data

repository_dispatch:
types: [version-update-and-push]

permissions:
pull-requests: write
contents: read

jobs:
version-update:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout code
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: platform/update-version-meta-data
ref: develop

- name: Extract version information to file
run: echo "${{ github.event.client_payload.version }}" > VERSION

- name: Create version.properties using extracted version
run: |
IFS='.' read -ra VER <<< "$(cat VERSION)"
MAJOR=$((VER[0] * 1000000000))
MINOR=$((VER[1] * 1000000))
PATCH=$((VER[2] * 1000))
CODE=$((MAJOR + MINOR + PATCH))
echo "version=$(cat VERSION)" > gradle/version.properties
echo "code=$CODE" >> gradle/version.properties
echo "name=v$(cat VERSION)" >> gradle/version.properties
- name: Clean up version information file
run: rm VERSION

- name: Preview created version.properties
run: cat gradle/version.properties

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
signoff: true
delete-branch: true
commit-message: "automation: update version.properties"
author: "Author <actions@github.com>"
title: "platform: automated version update"
body: |
This PR was automatically generated to update version.properties.
This PR was automatically generated to update `version.properties`
branch: platform/update-version-meta-data
base: develop
labels: "skip-changelog"
assignees: "wax911"
reviewers: "wax911"

0 comments on commit a01f46c

Please sign in to comment.