Browse Source

Additional suplicate action checks

pull/2382/head
Gabe Kangas 4 years ago committed by GitHub
parent
commit
ffdda17fff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      .github/workflows/automated-end-to-end-api.yaml
  2. 9
      .github/workflows/bundle-web.yml
  3. 8
      .github/workflows/chromatic.yml

9
.github/workflows/automated-end-to-end-api.yaml

@ -15,11 +15,12 @@ jobs: @@ -15,11 +15,12 @@ jobs:
test:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
- uses: earthly/actions-setup@v1
with:
version: 'latest' # or pin to an specific version, e.g. "v0.6.10"

9
.github/workflows/bundle-web.yml

@ -12,11 +12,12 @@ jobs: @@ -12,11 +12,12 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'owncast/owncast'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
- name: Bundle web app (next.js build)
uses: actions/checkout@v3
- run: build/web/bundleWeb.sh

8
.github/workflows/chromatic.yml

@ -22,11 +22,11 @@ jobs: @@ -22,11 +22,11 @@ jobs:
run:
working-directory: ./web
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
concurrent_skipping: 'same_content_newer'
- name: Check out code
if: ${{ github.actor != 'renovate[bot]' && github.actor != 'renovate' }}
uses: actions/checkout@v3

Loading…
Cancel
Save