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 5b7a1a5 + 96a1e9f commit 3ccb8caCopy full SHA for 3ccb8ca
.github/workflows/post-cd.yaml
@@ -1,13 +1,20 @@
1
name: POST-CD
2
on:
3
- push:
4
- branches:
5
- - main
6
-
+ # When Pull Request is merged
+ pull_request_target:
+ types: [closed]
7
8
jobs:
+ TEST:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: test pull request
12
+ run: echo ${{github.event.pull_request.user.login}}
13
Dev-PR:
14
runs-on: ubuntu-latest
15
+ if: |
16
+ github.event.pull_request.user.login == 'polywrap-build-bot' &&
17
+ github.event.pull_request.merged == true
18
steps:
19
- name: Checkout
20
uses: actions/checkout@v3
VERSION
@@ -1 +1 @@
-0.1.0a25
+0.1.0a26
0 commit comments