Sha256: f9651d20cab5986d65c75c0484b3b6381395c7222ff7cc8b80ee1895beeea31d

Contents?: true

Size: 652 Bytes

Versions: 4

Compression:

Stored size: 652 Bytes

Contents

name: Update MIME type DB

on:
  schedule:
    # 10am on the 1st every month https://crontab.guru/#0_10_1_*_*
    - cron: "0 10 1 * *"
  workflow_dispatch:

jobs:
  update_db:
    runs-on: ubuntu-latest
    name: "Update MIME type DB"
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: "2.7"
          bundler-cache: true
      - name: Update mime-types-data
        run: bundle update mime-types-data
      - name: Update DB
        run: bundle exec rake rebuild_db
      - name: Create PR
        run: bin/db_pull_request
        env:
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mini_mime-1.1.2 .github/workflows/db.yml
mini_mime-1.1.1 .github/workflows/db.yml
mini_mime-1.1.0 .github/workflows/db.yml
mini_mime-1.0.3 .github/workflows/db.yml