Generate SDKs using the latest liblab versions and publish PRs directly to your SDK repositories.
This GitHub Action will regenerate your SDKs whenever there is a new release of liblab.
This is a simple way of keeping your SDKs up to date with the latest liblab releases.
For more information about GitHub integration with liblab, check our docs.
Add this workflow to your control repository:
name: Latest liblab updates
on:
workflow_dispatch:
schedule:
- cron: '0 11 * * *' # 11am UTC corresponds to 5am CST
jobs:
generate-sdks-and-publish-prs:
name: Generate SDKs and publish PRs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate SDKs and publish PRs
uses: liblaber/[email protected]
with:
liblab_token: ${{ secrets.LIBLAB_TOKEN }}
liblab_github_token: ${{ secrets.LIBLAB_GITHUB_TOKEN }}