Sha256: 48e7f91b09f5db297b941c930652af62d699354dc23d1d9d8b66d5172a61a34d

Contents?: true

Size: 859 Bytes

Versions: 8

Compression:

Stored size: 859 Bytes

Contents

name: Main
on:
- push
- pull_request_target
jobs:
  ci:
    name: CI
    runs-on: ubuntu-latest
    env:
      CI: true
    steps:
    - uses: actions/checkout@master
    - uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
        ruby-version: 3.0
    - name: Lint and test
      run: |
        bundle exec rubocop --parallel
        bundle exec rake test
        bundle exec steep check
  automerge:
    name: AutoMerge
    needs: ci
    runs-on: ubuntu-latest
    if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]'
    steps:
    - uses: actions/github-script@v3
      with:
        script: |
          github.pulls.merge({
            owner: context.payload.repository.owner.login,
            repo: context.payload.repository.name,
            pull_number: context.payload.pull_request.number
          })

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
fast_camelize-0.1.4 .github/workflows/main.yml
fast_parameterize-0.1.2 .github/workflows/main.yml
fast_camelize-0.1.3 .github/workflows/main.yml
fast_parameterize-0.1.1 .github/workflows/main.yml
fast_camelize-0.1.2 .github/workflows/main.yml
fast_camelize-0.1.1 .github/workflows/main.yml
fast_camelize-0.1.0 .github/workflows/main.yml
fast_parameterize-0.1.0 .github/workflows/main.yml