Skip to content

Commit

Permalink
add supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
quinna-h committed Dec 18, 2024
1 parent 112db1f commit 3b5aae2
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/generate-supported-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Generate Supported Versions"

on:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs bundle install
ruby-version: "3.3"

- name: Update latest
run: bundle exec ruby .github/scripts/find_gem_version_bounds.rb

- run: git diff

- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.GHA_PAT }}
branch: auto-generate/update-supported-versions
title: '[🤖] Update Supported Versions'
base: master
labels: dev/internal, integrations
commit-message: "Test creating supported versions"
delete-branch: true
body: |
- Test

0 comments on commit 3b5aae2

Please sign in to comment.