Update Infinitude Source #109
This file contains 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: Update Infinitude Source | |
on: # yamllint disable-line rule:truthy | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
update-infinitude: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Get current version | |
id: old_version | |
run: | | |
echo "OLD_VERSION=$(git -C infinitude-src describe --tags --always)" >> $GITHUB_OUTPUT | |
- name: Update infinitude | |
run: | | |
git submodule update --remote infinitude-src | |
- name: Get new version | |
id: new_version | |
run: | | |
echo "NEW_VERSION=$(git -C infinitude-src describe --tags --always)" >> $GITHUB_OUTPUT | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# use the output from the previous task | |
commit-message: Update Infinitude from ${{ steps.old_version.outputs.OLD_VERSION }} to ${{ steps.new_version.outputs.NEW_VERSION }} | |
title: Update Infinitude from ${{ steps.old_version.outputs.OLD_VERSION }} to ${{ steps.new_version.outputs.NEW_VERSION }} | |
body: Automatically updated Infinitude to ${{ steps.new_version.outputs.NEW_VERSION }} | |
branch: update-infinitude-src | |
delete-branch: true | |
base: main | |
reviewers: sosheskaz | |
assignees: sosheskaz |