restrict dev docker builds to vabene1111

This commit is contained in:
smilerz 2021-08-31 16:58:00 -05:00
parent b51636ef64
commit 09e886958f
8 changed files with 41 additions and 3 deletions

View File

@ -4,7 +4,7 @@ on: [push]
jobs:
build:
if: github.repository_owner == 'vabene1111'
runs-on: ubuntu-latest
strategy:
max-parallel: 4

View File

@ -8,9 +8,8 @@ on:
jobs:
CodeQL-Build:
if: github.repository_owner == 'vabene1111'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

View File

@ -5,6 +5,7 @@ on:
- 'beta'
jobs:
build:
if: github.repository_owner == 'vabene1111'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

View File

@ -7,6 +7,7 @@ on:
- '!master'
jobs:
build:
if: github.repository_owner == 'vabene1111'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

View File

@ -6,6 +6,7 @@ on:
jobs:
build:
if: github.repository_owner == 'vabene1111'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

View File

@ -7,6 +7,7 @@ on:
jobs:
build:
if: github.repository_owner == 'vabene1111'
runs-on: ubuntu-latest
name: Build image job
steps:

View File

@ -7,6 +7,7 @@ on:
jobs:
deploy:
if: github.repository_owner == 'vabene1111'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

View File

@ -0,0 +1,34 @@
# Generated by Django 3.2.6 on 2021-08-31 21:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0150_food_to_tree'),
]
operations = [
migrations.RemoveIndex(
model_name='cooklog',
name='cookbook_co_id_37485a_idx',
),
migrations.RemoveIndex(
model_name='viewlog',
name='cookbook_vi_recipe__5cd178_idx',
),
migrations.AlterField(
model_name='userpreference',
name='search_style',
field=models.CharField(choices=[('SMALL', 'Small'), ('LARGE', 'Large'), ('NEW', 'New')], default='NEW', max_length=64),
),
migrations.AddIndex(
model_name='cooklog',
index=models.Index(fields=['id', 'recipe', '-created_at', 'rating', 'created_by'], name='cookbook_co_id_93d841_idx'),
),
migrations.AddIndex(
model_name='viewlog',
index=models.Index(fields=['recipe', '-created_at', 'created_by'], name='cookbook_vi_recipe__1b051f_idx'),
),
]