Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

[ Workflow Patch ] : Ignore Dependabot Branches #168

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@ name: Deploy to Preview Channel

on:
pull_request:
# Optionally configure to run only for specific files. For example:
# paths:
# - "website/**"
branches: [ !dependabot/** ] # Exclude Dependabot branches

jobs:
build_and_preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Add any build steps here. For example:
# - run: npm ci && npm run build
# Add your build steps here (e.g., npm ci && npm run build)
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}"
repoToken: ${{ secrets.GITHUB_TOKEN }}
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
expires: 1d
projectId: sillylittlefiles
Loading