Merge pull request #65 from iMattPro/updates #30
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: Trigger Acme Demo Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| dispatch: | |
| if: github.repository == 'phpbb-extensions/test-framework' # only run if it's the main (source) repo | |
| name: Trigger tests in acme demo extension | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: convictional/[email protected] | |
| with: | |
| owner: phpbb | |
| repo: phpbb-ext-acme-demo | |
| ref: master | |
| github_user: iMattPro # The name of the github user whose access token is being used to trigger the workflow. | |
| github_token: ${{ secrets.ACME_DEMO_PAT }} | |
| workflow_file_name: tests.yml | |
| wait_workflow: false | |
| client_payload: '{"branch":"master"}' |