Skip to content

Commit

Permalink
Remove semaphore
Browse files Browse the repository at this point in the history
  • Loading branch information
akariv committed Apr 3, 2024
1 parent f31bf58 commit 873b359
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,12 @@ on:
branches: [ master ]
workflow_dispatch:


jobs:
semaphore:
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- name: 'Block Concurrent Executions'
uses: softprops/turnstyle@v1
with:
poll-interval-seconds: 10
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build:
runs-on: ubuntu-latest
needs: semaphore
concurrency:
group: example-group
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion data/fetch_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from PIL import Image
from kvfile import KVFile

_cache = KVFile(filename='_cache_airtable')
_cache = KVFile(location='_cache_airtable')
override = set([])
for key in override:
try:
Expand Down

0 comments on commit 873b359

Please sign in to comment.