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.
2 parents 052dd14 + d2beb36 commit 45ac207Copy full SHA for 45ac207
.github/workflows/build.yaml
@@ -27,10 +27,13 @@ jobs:
27
- name: Transpile
28
run: yarn run build
29
30
- - name: Push changes
+ - name: Commit
31
run: |
32
git config user.name "${GITHUB_ACTOR}"
33
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
34
git add .
35
git commit -m "build: Transpile" || echo "No changes to commit"
36
- git push origin HEAD
+
37
+ - uses: peter-evans/create-pull-request@v3
38
+ with:
39
+ title: 'Transpile'
.github/workflows/integration-test.yml
@@ -1,10 +1,9 @@
1
name: Integration Test
2
3
on:
4
- workflow_run:
5
- workflows: ["Build"]
6
- types:
7
- - completed
+ pull_request:
+ paths:
+ - "dist"
8
9
env:
10
IMAGE_NAME: knqyf263/vuln-image
0 commit comments