Skip to content

Commit

Permalink
Add GitHub Actions workflow for Ruby upgrade automation
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew committed Nov 17, 2024
1 parent 572ba98 commit 934c40e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/upgrade-ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Upgrade Ruby

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 0" # Runs weekly

permissions:
contents: write
pull-requests: write

jobs:
upgrade-ruby:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: andrew/ruby-upgrade-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 934c40e

Please sign in to comment.