Skip to content

Commit

Permalink
Test build
Browse files Browse the repository at this point in the history
  • Loading branch information
WonyoungChoi committed Sep 17, 2021
1 parent 137009b commit b5180d2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Check Symbol

on:
workflow_run:
workflows: ["Build"]
types:
- requested

jobs:
check-symbol:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
repository: WonyoungChoi/PrivateData
token: ${{ secrets.MY_PAT }}

- name: Examin Environment
run: |
ls -al
env
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: echo "$GITHUB_CONTEXT"

- name: Test Script
uses: actions/github-script@v4
with:
script: |
console.log(JSON.stringify(context.payload))

0 comments on commit b5180d2

Please sign in to comment.