Sha256: 8e4704c71fed9ce9043bb81f05fdad0d8f27348558e4db5fe3cfdc93a64380b9

Contents?: true

Size: 872 Bytes

Versions: 11

Compression:

Stored size: 872 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:
        ruby-version: 3.0
        bundler-cache: true
    - name: Lint and test
      run: |
        bundle exec rubocop --parallel
        bundle exec rake test
  automerge:
    name: AutoMerge
    needs: ci
    runs-on: ubuntu-latest
    if: github.event_name == 'pull_request_target' && (github.actor == github.repository_owner || 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

11 entries across 11 versions & 9 rubygems

Version Path
thor-hollaback-0.2.1 .github/workflows/main.yml
ragel-bitmap-0.2.2 .github/workflows/main.yml
ragel-array-0.1.1 .github/workflows/main.yml
preval-0.6.1 .github/workflows/main.yml
minitest-keyword-1.0.1 .github/workflows/main.yml
humidifier-4.1.1 .github/workflows/main.yml
hollaback-0.1.1 .github/workflows/main.yml
gemfilelint-0.4.1 .github/workflows/main.yml
bundler-console-0.0.3 .github/workflows/main.yml
gemfilelint-0.4.0 .github/workflows/main.yml
gemfilelint-0.3.0 .github/workflows/main.yml