Skip to content

Commit 42b9639

Browse files
committed
Beginning changes for testing approval workflow
1 parent 82e46a8 commit 42b9639

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/approval.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Approval Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
# pull_request_review:
6+
# types: [submitted]
7+
jobs:
8+
approved:
9+
# if: github.event.review.state == 'approved'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Run Integration Tests
13+
run: |
14+
echo ${{ github.head_ref }}

0 commit comments

Comments
 (0)