Skip to content

Commit

Permalink
chore: try check_run workflow trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
sonallux committed Nov 16, 2024
1 parent 951191d commit 1e5fb56
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/after-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: After deployment

on:
check_run:
types:
- completed

jobs:
after-deploy:
# if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: echo ${github.event.check_run}
5 changes: 4 additions & 1 deletion .github/workflows/firebase-hosting-pr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Deploy preview

on: pull_request
on:
pull_request:
branches:
- disabled

concurrency:
group: deploy-preview-${{ github.ref }}
Expand Down

0 comments on commit 1e5fb56

Please sign in to comment.