mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-29 04:15:06 +03:00
26 lines
693 B
YAML
26 lines
693 B
YAML
name: update-rust-toolchain
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
schedule:
|
|
- cron: '0 0 1 * *' # runs on the first of every month at 00:00
|
|
|
|
jobs:
|
|
update-rust-toolchain:
|
|
name: "Update rust-toolchain"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: update rust toolchain
|
|
id: urt
|
|
uses: a-kenji/update-rust-toolchain@v1.1
|
|
with:
|
|
minor-version-delta: 2
|
|
toolchain-path: './rust-toolchain.toml'
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
pr-labels: |
|
|
dependencies
|
|
automated
|
|
rust
|