Skip to content

Commit

Permalink
Added a workflow to update Appraisal files on dependabot MRs
Browse files Browse the repository at this point in the history
  • Loading branch information
kpumuk committed Nov 20, 2023
1 parent 8293a0f commit 36a117c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: StandardRB

on:
pull_request:
types: [labeled]

jobs:
build:
if: contains(github.event.pull_request.labels.*.name, 'bundler')
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
ruby-version:
- "3.2"

name: Appraisal - Ruby ${{ matrix.ruby-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Update Appraisal gemfiles
run: |
bundle exec appraisal update

0 comments on commit 36a117c

Please sign in to comment.