prevent dependabot from needing google credentials in CI

This commit is contained in:
41666 2022-01-31 23:59:53 -05:00
parent 5f23498967
commit 9f870139ff

View file

@ -25,6 +25,7 @@ jobs:
worker_build: worker_build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: Worker Build & Publish name: Worker Build & Publish
if: startsWith(github.ref, 'refs/heads/dependabot/') != true
needs: needs:
- node_test - node_test
strategy: strategy:
@ -74,6 +75,7 @@ jobs:
docker_build: docker_build:
name: Docker Build & Publish name: Docker Build & Publish
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/heads/dependabot/') != true
needs: needs:
- node_test - node_test
strategy: strategy:
@ -138,7 +140,7 @@ jobs:
needs: needs:
- docker_build - docker_build
- worker_build - worker_build
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/miniflare' if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Get Bot digest - name: Get Bot digest