chore: post-release sync (#8720) #1277
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: "Dispatch OSS" | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ develop ] | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.OSS_DISPATCH }} | |
script: | | |
const result = await github.rest.repos.createDispatchEvent({ | |
owner: 'nocodb', | |
repo: 'nocohub', | |
event_type: 'OSS', | |
client_payload: { | |
push: ${{ toJSON(github.event) }} | |
} | |
}) |