Add trigger workflow for PR testing to get access to variables and se… #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI ReSim Trigger | ||
| on: | ||
| pull_request: | ||
| workflow_dispatch: | ||
| env: | ||
| EVENT_NUMBER: ${{ github.event.number }} | ||
| PR_SHA: ${{ github.event.pull_request.base.sha }} | ||
| jobs: | ||
| get PR data: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: print vars | ||
| run: | ||
| echo "Event Number: ${{ github.env.EVENT_NUMBER }}" | ||
| echo "PR Base Hash: ${{ github.env.PR_SHA }}" | ||