Skip to content

Bump rubocop from 1.89.0 to 1.90.0 in the rubocop group across 1 directory #1478

Bump rubocop from 1.89.0 to 1.90.0 in the rubocop group across 1 directory

Bump rubocop from 1.89.0 to 1.90.0 in the rubocop group across 1 directory #1478

Workflow file for this run

name: Dump config
on: [push, pull_request]
jobs:
check-token:
name: Check for token
runs-on: ubuntu-latest
outputs:
token-held: ${{ steps.set_output.outputs.token_held }}
steps:
- name: check for token
id: set_output
run: '[ -z "$TOKEN_HELD" ] || echo "token_held=true" >> "$GITHUB_OUTPUT"'
env:
TOKEN_HELD: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
dump-config:
name: Dump config
needs: check-token
if: needs.check-token.outputs.token-held == 'true'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
- name: Setup Ruby
uses: ruby/setup-ruby@6e5d382445ae5590b7449d8b3bc8cb1c2c27f617 # v1.317.0
with:
bundler-cache: true
- name: Dump config
run: bundle exec rake config:dump
- name: Commit & push
uses: EndBug/add-and-commit@645ecc0dd0a57f4d86d26c0aa5fc42c0a856fbca # v11.0.0
id: push
with:
add: 'test/fixtures/full_config.yml'
default_author: github_actions
message: |
Dump full RuboCop config
This automated commit dumps the contents of the full RuboCop config.
[dependabot skip]