Social: Decouple SharePostForm component from the store (#46545) #9527
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: End to end tests | |
| on: | |
| push: | |
| # We use secrets.REPO_DISPATCH_TOKEN for everything here, so no need for permissions. | |
| permissions: {} | |
| jobs: | |
| run-tests: | |
| name: "Trigger e2e tests in Jetpack monorepo" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Create a repository dispatch | |
| uses: peter-evans/repository-dispatch@v4 | |
| with: | |
| token: ${{ secrets.REPO_DISPATCH_TOKEN }} | |
| repository: automattic/jetpack | |
| event-type: e2e tests at ${{github.event_name}} on ${{github.repository}} ${{github.ref_name}} ${{github.ref_type}} | |
| client-payload: '{"repository": "${{github.repository}}", "ref_name": "${{github.ref_name}}", "ref_type": "${{github.ref_type}}"}' |