Automatically Convert CHANGELOG to Fastlane

This commit is contained in:
Sylvia van Os
2021-08-30 21:26:30 +02:00
parent a81cc27414
commit 6223ccd4bc
5 changed files with 131 additions and 79 deletions

View File

@@ -0,0 +1,24 @@
name: Convert CHANGELOG to Fastlane
on:
push:
branches: [ master ]
jobs:
convert_changelog_to_fastlane:
runs-on: ubuntu-latest
name: Convert CHANGELOG to Fastlane
steps:
- name: Checkout repo
id: checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Run converter script
run: python .scripts/changelog_to_fastlane.py
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
title: "Update Fastlane changelogs"
commit-message: "Update Fastlane changelogs"

View File

@@ -1,3 +1,4 @@
name: Write contributors to file
on:
push:
branches: [ master ]