Bump kotlin nightlies #150
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: Bump kotlin nightlies | |
on: | |
schedule: | |
- cron: '0 2 * * *' | |
workflow_dispatch: | |
jobs: | |
push-kotlin-nightlies-branch: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 | |
with: | |
ref: kotlin-nightlies | |
fetch-depth: 0 | |
- name: Rebase on top of main, bump versions, commit and push, and trigger 'pr' workflow | |
run: ./scripts/bump-kotlin-nightlies.main.kts | |
env: | |
GH_TOKEN: ${{ github.token }} |