Sha256: ef90776429be96c618452144768d70ec1be45a225bdc6876e5dea8587b6d6c5f

Contents?: true

Size: 939 Bytes

Versions: 5

Compression:

Stored size: 939 Bytes

Contents

name: "RuboCop Challenge"

on:
  schedule:
    - cron: '30 23 * * 1,3,5' # Monday, Wednesday, Friday at 23:30 UTC

jobs:
  create-pr:
    name: Create Pull Request
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: gemfiles/Gemfile.rails50
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby 3.2
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.2
      - name: Install bundler
        run: gem install bundler
      - name: Install gems
        run: bundle install --jobs 4 --retry 3
      - name: Set git configuration
        run: git config remote.origin.url "git@github.com:Apipie/apipie-rails.git"
      - name: Create RuboCop challenge pull request
        env:
          GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: bundle exec rubocop_challenger go --exclude-limit=180 --base-branch=master --email=rubocop@payrollhero.com --name="Rubocop Challenger" --mode=random

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
apipie-rails-1.3.0 .github/workflows/rubocop-challenger.yml
apipie-rails-1.2.3 .github/workflows/rubocop-challenger.yml
apipie-rails-1.2.2 .github/workflows/rubocop-challenger.yml
apipie-rails-1.2.1 .github/workflows/rubocop-challenger.yml
apipie-rails-1.2.0 .github/workflows/rubocop-challenger.yml