From 934c40e52f9b115e319076c91d747c49bb45c025 Mon Sep 17 00:00:00 2001 From: Andrew Nesbitt Date: Sun, 17 Nov 2024 16:15:56 +0000 Subject: [PATCH] Add GitHub Actions workflow for Ruby upgrade automation --- .github/workflows/upgrade-ruby.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/upgrade-ruby.yml diff --git a/.github/workflows/upgrade-ruby.yml b/.github/workflows/upgrade-ruby.yml new file mode 100644 index 00000000..90ed7c1e --- /dev/null +++ b/.github/workflows/upgrade-ruby.yml @@ -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 }} \ No newline at end of file