Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
felipesaezreyes authored Aug 22, 2024
1 parent 22be2a3 commit 01986c1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on:
issue_comment:
types: [created]


jobs:
test_workflow:
if: |
github.event.issue.pull_request &&
github.event.comment.body == '/testin'
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
# Checkout only the changed data files
- name: Test
run: |
echo $DEET
echo $DOOT
echo $DUUT
env:
DEET: ${{ github.event.issue.pull_request.head.repo.full_name }}
DOOT: ${{ github.event.pull_request.head.repo.full_name }}
DUUT: ${{ github.event.repository.full_name }}

0 comments on commit 01986c1

Please sign in to comment.