Support Node 20, address deprecation warnings #113
This file contains 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: Repo Events Repository Dispatch | |
on: | |
- issues | |
- issue_comment | |
- pull_request | |
jobs: | |
preflight-job: | |
name: Dispatch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print Outputs | |
env: | |
outputs: ${{ toJSON(github) }} | |
run: | | |
echo outputs: $outputs | |
- name: Repository Dispatch | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.PAT }} | |
repository: githubocto/next-devex-workflows # repo to send event to | |
event-type: repoevents # name of the custom event | |
client-payload: '{"event": ${{ toJSON(github) }}}' |