Release Catima 2.41.4 #1067
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Convert CHANGELOG to Fastlane | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'CHANGELOG.md' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| convert_changelog_to_fastlane: | |
| runs-on: ubuntu-latest | |
| name: Convert CHANGELOG to Fastlane | |
| steps: | |
| - name: Checkout repo | |
| id: checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: '3.x' | |
| - name: Run converter script | |
| run: python .scripts/changelog_to_fastlane.py | |
| - name: Create Pull Request | |
| uses: peter-evans/[email protected] | |
| with: | |
| title: "Update Fastlane changelogs" | |
| commit-message: "Update Fastlane changelogs" | |
| branch-suffix: timestamp |