We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf1bef9 commit b279b16Copy full SHA for b279b16
2 files changed
.github/workflows/deploy.yml
@@ -2,10 +2,12 @@
2
3
name: deploy
4
on:
5
- workflow_run:
6
- workflows: ['test']
7
- types:
8
- - completed
+ pull_request:
+ branches:
+ - main
+ push:
9
10
11
workflow_dispatch:
12
inputs:
13
environment:
@@ -18,7 +20,6 @@ concurrency:
18
20
19
21
jobs:
22
cloudflare-pages-deploy:
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
23
permissions:
24
actions: read
25
contents: read
.github/workflows/release.yml
@@ -4,9 +4,12 @@ name: release
workflow_run:
- workflows: [test, check dist]
- branches: [main]
- types: [completed]
+ workflows:
+ - test
+ types:
+ - completed
14
concurrency: ${{ github.workflow }}-${{ github.ref }}
15
0 commit comments