We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a096041 commit ab59a4dCopy full SHA for ab59a4d
2 files changed
.github/workflows/ci.yml
@@ -4,6 +4,7 @@ on:
4
branches:
5
- main
6
pull_request:
7
+ workflow_dispatch:
8
9
jobs:
10
test:
.github/workflows/update-screenshots.yml
@@ -52,3 +52,8 @@ jobs:
52
git add test/visual/__screenshots__/.
53
git diff-index --quiet HEAD || git commit -m "${{ env.COMMIT_MESSAGE }}"
54
git push --set-upstream origin ${{ github.head_ref }}
55
+ - name: Trigger ci workflow
56
+ run: |
57
+ gh workflow run ci.yml --ref ${{ github.head_ref }}
58
+ env:
59
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments